7 lines
97 B
Go
7 lines
97 B
Go
package ast
|
|
|
|
// Loop represents a block of repeatable statements.
|
|
type Loop struct {
|
|
Body AST
|
|
}
|