| 32 | } |
| 33 | |
| 34 | type ExprList struct { |
| 35 | Children []Node |
| 36 | |
| 37 | typMu sync.RWMutex |
| 38 | typ types.Type |
| 39 | } |
| 40 | |
| 41 | func (n *ExprList) Pos() *position.Position { |
| 42 | return mergepositionlist(n.Children) |
nothing calls this directly
no outgoing calls
no test coverage detected