BinaryExpr represents an operation between two expressions.
| 425 | |
| 426 | // BinaryExpr represents an operation between two expressions. |
| 427 | type BinaryExpr struct { |
| 428 | Op Token |
| 429 | LHS Expr |
| 430 | RHS Expr |
| 431 | ExprType Type |
| 432 | } |
| 433 | |
| 434 | // Type returns the type. |
| 435 | func (e *BinaryExpr) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected