Java 类jdk.nashorn.internal.ir.ContinueNode 实例源码

项目:OpenJSharp    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:openjdk-jdk10    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:openjdk9    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:kaziranga    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:lookaside_java-1.8.0-openjdk    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:jdk8u_nashorn    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:infobip-open-jdk-8    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final String label = continueNode.getLabelName();
    if(label != null) {
        property("label", label);
    } else {
        property("label");
        nullValue();
    }

    return leave();
}
项目:OLD-OpenJDK8    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final IdentNode label = continueNode.getLabel();
    property("label");
    if (label != null) {
        label.accept(this);
    } else {
        nullValue();
    }

    return leave();
}
项目:nashorn-backport    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final IdentNode label = continueNode.getLabel();
    property("label");
    if (label != null) {
        label.accept(this);
    } else {
        nullValue();
    }

    return leave();
}
项目:nashorn    文件:JSONWriter.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    enterDefault(continueNode);

    type("ContinueStatement");
    comma();

    final IdentNode label = continueNode.getLabel();
    property("label");
    if (label != null) {
        label.accept(this);
    } else {
        nullValue();
    }

    return leave();
}
项目:OLD-OpenJDK8    文件:CodeGenerator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    lineNumber(continueNode);

    final LoopNode continueTo = lc.getContinueTo(continueNode.getLabel());
    for (int i = 0; i < lc.getScopeNestingLevelTo(continueTo); i++) {
        closeWith();
    }
    method.splitAwareGoto(lc, continueTo.getContinueLabel());

    return false;
}
项目:nashorn-backport    文件:CodeGenerator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    lineNumber(continueNode);

    final LoopNode continueTo = lc.getContinueTo(continueNode.getLabel());
    for (int i = 0; i < lc.getScopeNestingLevelTo(continueTo); i++) {
        closeWith();
    }
    method.splitAwareGoto(lc, continueTo.getContinueLabel());

    return false;
}
项目:nashorn    文件:CodeGenerator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    lineNumber(continueNode);

    final LoopNode continueTo = lc.getContinueTo(continueNode.getLabel());
    for (int i = 0; i < lc.getScopeNestingLevelTo(continueTo); i++) {
        closeWith();
    }
    method.splitAwareGoto(lc, continueTo.getContinueLabel());

    return false;
}
项目:OpenJSharp    文件:Parser.java   
/**
 * ContinueStatement :
 *      continue Identifier? ; // [no LineTerminator here]
 *
 * See 12.7
 *
 * Parse CONTINUE statement.
 */
private void continueStatement() {
    // Capture CONTINUE token.
    final int  continueLine  = line;
    final long continueToken = token;
    // CONTINUE tested in caller.
    nextOrEOL();

    LabelNode labelNode = null;

    // SEMICOLON or label.
    switch (type) {
    case RBRACE:
    case SEMICOLON:
    case EOL:
    case EOF:
        break;

    default:
        final IdentNode ident = getIdent();
        labelNode = lc.findLabel(ident.getName());

        if (labelNode == null) {
            throw error(AbstractParser.message("undefined.label", ident.getName()), ident.getToken());
        }

        break;
    }

    final String labelName = labelNode == null ? null : labelNode.getLabelName();
    final LoopNode targetNode = lc.getContinueTo(labelName);

    if (targetNode == null) {
        throw error(AbstractParser.message("illegal.continue.stmt"), continueToken);
    }

    endOfLine();

    // Construct and add CONTINUE node.
    appendStatement(new ContinueNode(continueLine, continueToken, finish, labelName));
}
项目:OpenJSharp    文件:PrintVisitor.java   
@Override
public boolean enterContinueNode(final ContinueNode node) {
    node.toString(sb, printTypes);
    printLocalVariableConversion(node);
    return false;
}
项目:OpenJSharp    文件:Lower.java   
/**
 * Constructor.
 */
Lower(final Compiler compiler) {
    super(new BlockLexicalContext() {

        @Override
        public List<Statement> popStatements() {
            final List<Statement> newStatements = new ArrayList<>();
            boolean terminated = false;

            final List<Statement> statements = super.popStatements();
            for (final Statement statement : statements) {
                if (!terminated) {
                    newStatements.add(statement);
                    if (statement.isTerminal() || statement instanceof BreakNode || statement instanceof ContinueNode) { //TODO hasGoto? But some Loops are hasGoto too - why?
                        terminated = true;
                    }
                } else {
                    statement.accept(new NodeVisitor<LexicalContext>(new LexicalContext()) {
                        @Override
                        public boolean enterVarNode(final VarNode varNode) {
                            newStatements.add(varNode.setInit(null));
                            return false;
                        }
                    });
                }
            }
            return newStatements;
        }

        @Override
        protected Block afterSetStatements(final Block block) {
            final List<Statement> stmts = block.getStatements();
            for(final ListIterator<Statement> li = stmts.listIterator(stmts.size()); li.hasPrevious();) {
                final Statement stmt = li.previous();
                // popStatements() guarantees that the only thing after a terminal statement are uninitialized
                // VarNodes. We skip past those, and set the terminal state of the block to the value of the
                // terminal state of the first statement that is not an uninitialized VarNode.
                if(!(stmt instanceof VarNode && ((VarNode)stmt).getInit() == null)) {
                    return block.setIsTerminal(this, stmt.isTerminal());
                }
            }
            return block.setIsTerminal(this, false);
        }
    });

    this.log = initLogger(compiler.getContext());
}
项目:OpenJSharp    文件:Lower.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    addStatement(continueNode);
    return false;
}
项目:OpenJSharp    文件:SplitIntoFunctions.java   
@Override
public Node leaveContinueNode(final ContinueNode continueNode) {
    return leaveJumpNode(continueNode);
}
项目:OpenJSharp    文件:LocalVariableTypesCalculator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    return enterJumpStatement(continueNode);
}
项目:OpenJSharp    文件:CodeGenerator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    return enterJumpStatement(continueNode);
}
项目:OpenJSharp    文件:WeighNodes.java   
@Override
public Node leaveContinueNode(final ContinueNode continueNode) {
    weight += CONTINUE_WEIGHT;
    return continueNode;
}
项目:openjdk-jdk10    文件:IRTranslator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    curStat = new ContinueTreeImpl(continueNode);
    return false;
}
项目:openjdk-jdk10    文件:ContinueTreeImpl.java   
ContinueTreeImpl(final ContinueNode node) {
    super(node);
    this.label = node.getLabelName();
}
项目:openjdk-jdk10    文件:Parser.java   
/**
 * ContinueStatement :
 *      continue Identifier? ; // [no LineTerminator here]
 *
 * See 12.7
 *
 * Parse CONTINUE statement.
 */
private void continueStatement() {
    // Capture CONTINUE token.
    final int  continueLine  = line;
    final long continueToken = token;
    // CONTINUE tested in caller.
    nextOrEOL();

    ParserContextLabelNode labelNode = null;

    // SEMICOLON or label.
    switch (type) {
    case RBRACE:
    case SEMICOLON:
    case EOL:
    case EOF:
        break;

    default:
        final IdentNode ident = getIdent();
        labelNode = lc.findLabel(ident.getName());

        if (labelNode == null) {
            throw error(AbstractParser.message("undefined.label", ident.getName()), ident.getToken());
        }

        break;
    }

    final String labelName = labelNode == null ? null : labelNode.getLabelName();
    final ParserContextLoopNode targetNode = lc.getContinueTo(labelName);

    if (targetNode == null) {
        throw error(AbstractParser.message("illegal.continue.stmt"), continueToken);
    }

    endOfLine();

    // Construct and add CONTINUE node.
    appendStatement(new ContinueNode(continueLine, continueToken, finish, labelName));
}
项目:openjdk-jdk10    文件:PrintVisitor.java   
@Override
public boolean enterContinueNode(final ContinueNode node) {
    node.toString(sb, printTypes);
    printLocalVariableConversion(node);
    return false;
}
项目:openjdk-jdk10    文件:Lower.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    addStatement(continueNode);
    return false;
}
项目:openjdk-jdk10    文件:SplitIntoFunctions.java   
@Override
public Node leaveContinueNode(final ContinueNode continueNode) {
    return leaveJumpNode(continueNode);
}
项目:openjdk-jdk10    文件:LocalVariableTypesCalculator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    return enterJumpStatement(continueNode);
}
项目:openjdk-jdk10    文件:CodeGenerator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    return enterJumpStatement(continueNode);
}
项目:openjdk-jdk10    文件:WeighNodes.java   
@Override
public Node leaveContinueNode(final ContinueNode continueNode) {
    weight += CONTINUE_WEIGHT;
    return continueNode;
}
项目:openjdk9    文件:IRTranslator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    curStat = new ContinueTreeImpl(continueNode);
    return false;
}
项目:openjdk9    文件:ContinueTreeImpl.java   
ContinueTreeImpl(final ContinueNode node) {
    super(node);
    this.label = node.getLabelName();
}
项目:openjdk9    文件:Parser.java   
/**
 * ContinueStatement :
 *      continue Identifier? ; // [no LineTerminator here]
 *
 * See 12.7
 *
 * Parse CONTINUE statement.
 */
private void continueStatement() {
    // Capture CONTINUE token.
    final int  continueLine  = line;
    final long continueToken = token;
    // CONTINUE tested in caller.
    nextOrEOL();

    ParserContextLabelNode labelNode = null;

    // SEMICOLON or label.
    switch (type) {
    case RBRACE:
    case SEMICOLON:
    case EOL:
    case EOF:
        break;

    default:
        final IdentNode ident = getIdent();
        labelNode = lc.findLabel(ident.getName());

        if (labelNode == null) {
            throw error(AbstractParser.message("undefined.label", ident.getName()), ident.getToken());
        }

        break;
    }

    final String labelName = labelNode == null ? null : labelNode.getLabelName();
    final ParserContextLoopNode targetNode = lc.getContinueTo(labelName);

    if (targetNode == null) {
        throw error(AbstractParser.message("illegal.continue.stmt"), continueToken);
    }

    endOfLine();

    // Construct and add CONTINUE node.
    appendStatement(new ContinueNode(continueLine, continueToken, finish, labelName));
}
项目:openjdk9    文件:PrintVisitor.java   
@Override
public boolean enterContinueNode(final ContinueNode node) {
    node.toString(sb, printTypes);
    printLocalVariableConversion(node);
    return false;
}
项目:openjdk9    文件:Lower.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    addStatement(continueNode);
    return false;
}
项目:openjdk9    文件:SplitIntoFunctions.java   
@Override
public Node leaveContinueNode(final ContinueNode continueNode) {
    return leaveJumpNode(continueNode);
}
项目:openjdk9    文件:LocalVariableTypesCalculator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    return enterJumpStatement(continueNode);
}
项目:openjdk9    文件:CodeGenerator.java   
@Override
public boolean enterContinueNode(final ContinueNode continueNode) {
    return enterJumpStatement(continueNode);
}
项目:openjdk9    文件:WeighNodes.java   
@Override
public Node leaveContinueNode(final ContinueNode continueNode) {
    weight += CONTINUE_WEIGHT;
    return continueNode;
}
项目:kaziranga    文件:Parser.java   
/**
 * ContinueStatement :
 *      continue Identifier? ; // [no LineTerminator here]
 *
 * See 12.7
 *
 * Parse CONTINUE statement.
 */
private void continueStatement() {
    // Capture CONTINUE token.
    final int  continueLine  = line;
    final long continueToken = token;
    // CONTINUE tested in caller.
    nextOrEOL();

    LabelNode labelNode = null;

    // SEMICOLON or label.
    switch (type) {
    case RBRACE:
    case SEMICOLON:
    case EOL:
    case EOF:
        break;

    default:
        final IdentNode ident = getIdent();
        labelNode = lc.findLabel(ident.getName());

        if (labelNode == null) {
            throw error(AbstractParser.message("undefined.label", ident.getName()), ident.getToken());
        }

        break;
    }

    final String labelName = labelNode == null ? null : labelNode.getLabelName();
    final LoopNode targetNode = lc.getContinueTo(labelName);

    if (targetNode == null) {
        throw error(AbstractParser.message("illegal.continue.stmt"), continueToken);
    }

    endOfLine();

    // Construct and add CONTINUE node.
    appendStatement(new ContinueNode(continueLine, continueToken, finish, labelName));
}