| 109 | } |
| 110 | |
| 111 | type BinaryOperation struct { |
| 112 | LeftExpr Expr |
| 113 | Operation TokenKind |
| 114 | RightExpr Expr |
| 115 | HasGlobal bool |
| 116 | HasNot bool |
| 117 | } |
| 118 | |
| 119 | func (p *BinaryOperation) Pos() Pos { |
| 120 | return p.LeftExpr.Pos() |
nothing calls this directly
no outgoing calls
no test coverage detected