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