Java 类org.eclipse.jdt.internal.compiler.ast.ExtendedStringLiteral 实例源码

项目:android-retrolambda-lombok    文件:EcjTreeOperations.java   
private static void dodgeExtendedStringLiterals(EcjTreePrinter printer) {
    printer.skipProperty(StringLiteral.class, "lineNumber");
    printer.skipPropertyIfHasValue(ExtendedStringLiteral.class, "lineNumber", -1);
    printer.skipPropertyIfHasValue(ExtendedStringLiteral.class, "lineNumber", -2);
    printer.skipPropertyIfHasValue(StringLiteral.class, "lineNumber", -1);
    printer.skipPropertyIfHasValue(StringLiteral.class, "lineNumber", -2);
    printer.stringReplace("ExtendedStringLiteral", "StringLiteral");
}
项目:lombok-ianchiu    文件:SetGeneratedByVisitor.java   
@Override public boolean visit(ExtendedStringLiteral node, BlockScope scope) {
    fixPositions(setGeneratedBy(node, source));
    return super.visit(node, scope);
}
项目:EasyMPermission    文件:SetGeneratedByVisitor.java   
@Override public boolean visit(ExtendedStringLiteral node, BlockScope scope) {
    fixPositions(setGeneratedBy(node, source));
    return super.visit(node, scope);
}
项目:Eclipse-Postfix-Code-Completion    文件:BinaryExpressionFragmentBuilder.java   
public boolean visit(
    ExtendedStringLiteral extendedStringLiteral,
    BlockScope scope) {
        addRealFragment(extendedStringLiteral);
        return false;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:BinaryExpressionFragmentBuilder.java   
public boolean visit(
    ExtendedStringLiteral extendedStringLiteral,
    BlockScope scope) {
        addRealFragment(extendedStringLiteral);
        return false;
}
项目:xapi    文件:GwtAstBuilder.java   
@Override
public void endVisit(ExtendedStringLiteral x, BlockScope scope) {
  endVisit((StringLiteral) x, scope);
}
项目:lombok    文件:SetGeneratedByVisitor.java   
@Override public boolean visit(ExtendedStringLiteral node, BlockScope scope) {
    setGeneratedBy(node, source);
    applyOffsetExpression(node);
    return super.visit(node, scope);
}