Method
Type
Returns the position of the node from the original source
()
Source from the content-addressed store, hash-verified
| 16 | type Node interface { |
| 17 | Pos() *position.Position // Returns the position of the node from the original source |
| 18 | Type() types.Type // Returns the type of the expression in this node |
| 19 | } |
| 20 | |
| 21 | type StmtList struct { |
Implementers 15
StmtListinternal/runtime/compiler/ast/ast.go ExprListinternal/runtime/compiler/ast/ast.go CondStmtinternal/runtime/compiler/ast/ast.go IDTerminternal/runtime/compiler/ast/ast.go UnaryExprinternal/runtime/compiler/ast/ast.go VarDeclinternal/runtime/compiler/ast/ast.go StringLitinternal/runtime/compiler/ast/ast.go IntLitinternal/runtime/compiler/ast/ast.go