@override String visitUnaryExpr(UnaryExpr expr) { final rhs = expr.rhs.accept(this); final op = expr.prefix.lexeme; return '$op$rhs'; }