evaluate method

Object? evaluate(
  1. Expr expr
)

Implementation

Object? evaluate(Expr.Expr expr) {
  return expr.accept(this);
}