| 19 | } |
| 20 | |
| 21 | type StmtList struct { |
| 22 | Scope *symbol.Scope // Pointer to the local scope for this enclosing block |
| 23 | Children []Node |
| 24 | } |
| 25 | |
| 26 | func (n *StmtList) Pos() *position.Position { |
| 27 | return mergepositionlist(n.Children) |
nothing calls this directly
no outgoing calls
no test coverage detected