| 132 | } |
| 133 | |
| 134 | type BinaryExpr struct { |
| 135 | LHS, RHS Node |
| 136 | Op int |
| 137 | |
| 138 | typMu sync.RWMutex |
| 139 | typ types.Type |
| 140 | } |
| 141 | |
| 142 | func (n *BinaryExpr) Pos() *position.Position { |
| 143 | return position.Merge(n.LHS.Pos(), n.RHS.Pos()) |
nothing calls this directly
no outgoing calls
no test coverage detected