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