A binary represents a binary operator expression, e.g., x+y.
| 27 | |
| 28 | // A binary represents a binary operator expression, e.g., x+y. |
| 29 | type binary struct { |
| 30 | op rune // one of '+', '-', '*', '/' |
| 31 | x, y Expr |
| 32 | } |
| 33 | |
| 34 | // A call represents a function call expression, e.g., sin(x). |
| 35 | type call struct { |
nothing calls this directly
no outgoing calls
no test coverage detected