Exemplo n.º 1
0
 public boolean visit(CharLiteral charLiteral, BlockScope scope) {
   this.collector.append("[v CL " + cut(charLiteral.toString()) + "]\n");
   return super.visit(charLiteral, scope);
 }
Exemplo n.º 2
0
 public void endVisit(CharLiteral charLiteral, BlockScope scope) {
   this.collector.append("[ev CL " + cut(charLiteral.toString()) + "]\n");
   super.endVisit(charLiteral, scope);
 }