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