@Override public void visitContinue(JCContinue tree) { aPrint("continue"); if (tree.label != null) { print(" "); print(tree.label); } println(";", tree); }
public void visitContinue(JCContinue that) { try { print("JCContinue:"); } catch (Exception e) { } super.visitContinue(that); }
public void visitContinue(JCContinue tree) { try { print("continue"); if (tree.label != null) print(" " + tree.label); print(";"); } catch (IOException e) { throw new UncheckedIOException(e); } }
@Override public void visitContinue(JCContinue node) { Continue c = new Continue(); if (node.getLabel() != null) { c.astLabel(new Identifier().astValue(node.getLabel().toString())); } set(node, c); }
@Override public Description matchContinue(ContinueTree tree, VisitorState state) { if (new FinallyJumpMatcher((JCContinue) tree).matches(tree, state)) { return describeMatch(tree); } return Description.NO_MATCH; }
@Override public Description matchContinue(ContinueTree tree, VisitorState state) { if (new FinallyJumpMatcher((JCContinue) tree).matches(tree, state)) { return describeMatch(tree, NO_FIX); } return Description.NO_MATCH; }
protected int diffContinue(JCContinue oldT, JCContinue newT, int[] bounds) { final Name oldTLabel = oldT.label; final Name newTlabel = newT.label; return printBreakContinueTree(bounds, oldTLabel, newTlabel, oldT); }
private boolean matchContinue(JCContinue t1, JCContinue t2) { return t1.label == t2.label && treesMatch(t1.target, t2.target); }
public JCContinue Continue(Name label) { return invoke(Continue, label); }
public AJCContinue(JCContinue ltree) { super(ltree.label, ltree.target); }
public AJCContinue(JCContinue ltree, String lcomment) { this(ltree); setComment(lcomment); }
@Override public void visitContinue(JCContinue tree) { printNode(tree); property("label", tree.label); indent--; }
@Override public JCContinue inline(Inliner inliner) { return inliner.maker().Continue(ULabeledStatement.inlineLabel(getLabel(), inliner)); }
public FinallyJumpMatcher(JCContinue jcContinue) { this.label = jcContinue.label; this.jumpType = JumpType.CONTINUE; }
public void visitContinue(JCContinue tree) { tree.target = findJumpTarget(tree.pos(), tree.getTag(), tree.label, env); result = null; }