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