|
From: Jason M. <agr...@gm...> - 2022-04-30 17:28:32
|
Marc, can you drop the parentheses in CastExpr but leave the space
In ./tools/java2nrx/src/japa/parser/ast/visitor/DumpVisitor.java
Example:
867 public void visit(CastExpr n, Object arg) {
868 //printer.print("(");
869 n.getType().accept(this, arg);
870 //printer.print(") ");
871 printer.print(" ");
872 n.getExpr().accept(this, arg);
873 }
Thank you,
Jason
|