178179180181182183184185186
* * @return the String representation of this node */ @Override public final String toString() { DumpVisitor visitor = new DumpVisitor(); accept(visitor, null); return visitor.getSource(); }
217218219220221222223224225
* Return the String representation of this node. * * @return the String representation of this node */ @Override public final String toString() { final DumpVisitor visitor = new DumpVisitor(); accept(visitor, null); return visitor.getSource(); }
223224225226227228229230231
accept(visitor, null); return visitor.getSource(); } public final String toStringWithoutComments() { final DumpVisitor visitor = new DumpVisitor(false); accept(visitor, null); return visitor.getSource(); }