Eval returns the value of this Expr in the environment env.
(env Env)
| 7 | type Expr interface { |
| 8 | // Eval returns the value of this Expr in the environment env. |
| 9 | Eval(env Env) float64 |
| 10 | // Check reports errors in this Expr and adds its Vars to the set. |
| 11 | Check(vars map[Var]bool) error |
| 12 | } |