Ejemplo n.º 1
0
 public void endVisit(StringLiteralConcatenation literal, BlockScope scope) {
   this.collector.append("[ev SLC " + cut(literal.toString()) + "]\n");
   super.endVisit(literal, scope);
 }
Ejemplo n.º 2
0
 public void endVisit(StringLiteral stringLiteral, BlockScope scope) {
   this.collector.append("[ev SL " + cut(stringLiteral.toString()) + "]\n");
   super.endVisit(stringLiteral, scope);
 }
Ejemplo n.º 3
0
 public void endVisit(SingleNameReference singleNameReference, BlockScope scope) {
   this.collector.append("[ev SNR " + cut(singleNameReference.toString()) + "]\n");
   super.endVisit(singleNameReference, scope);
 }
Ejemplo n.º 4
0
 public void endVisit(ExtendedStringLiteral literal, BlockScope scope) {
   this.collector.append("[ev ESL " + cut(literal.toString()) + "]\n");
   super.endVisit(literal, scope);
 }
Ejemplo n.º 5
0
 public void endVisit(CharLiteral charLiteral, BlockScope scope) {
   this.collector.append("[ev CL " + cut(charLiteral.toString()) + "]\n");
   super.endVisit(charLiteral, scope);
 }
Ejemplo n.º 6
0
 public void endVisit(BinaryExpression binaryExpression, BlockScope scope) {
   this.collector.append("[ev BE " + cut(binaryExpression.toString()) + "]\n");
   super.endVisit(binaryExpression, scope);
 }