BinaryExpr represents an operation between two expressions.
| 49 | |
| 50 | // BinaryExpr represents an operation between two expressions. |
| 51 | type BinaryExpr struct { |
| 52 | Op token |
| 53 | LHS Expr |
| 54 | RHS Expr |
| 55 | } |
| 56 | |
| 57 | // String returns a string representation of the binary expression. |
| 58 | func (e *BinaryExpr) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected