private void buildLabeledStatement(LabeledStatementTree tree) { LabeledStatementTree s = tree; build(s.statement()); currentBlock = createBlock(currentBlock); labels.put(s.label().name(), currentBlock); return; }
public JavaLabelSymbol(LabeledStatementTree tree) { super(0, 0, tree.label().name(), null); declaration = tree; }