q/src/build/ast/Loop.go
2024-07-21 14:35:06 +02:00

7 lines
97 B
Go

package ast
// Loop represents a block of repeatable statements.
type Loop struct {
Body AST
}