Expr represents an expression that can be evaluated to a value.
| 90 | |
| 91 | // Expr represents an expression that can be evaluated to a value. |
| 92 | type Expr interface { |
| 93 | expr() |
| 94 | String() string |
| 95 | Type() Type |
| 96 | } |
| 97 | |
| 98 | func (*BinaryExpr) expr() {} |
| 99 | func (*BooleanLiteral) expr() {} |
no outgoing calls
no test coverage detected