| 14 | ) |
| 15 | |
| 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 { |
| 22 | Scope *symbol.Scope // Pointer to the local scope for this enclosing block |
no outgoing calls
no test coverage detected