478479480481482483484485486487
} private JsContinue mapContinue(Node contNode) { Node fromLabel = contNode.getFirstChild(); if (fromLabel != null) { return new JsContinue(makeSourceInfo(contNode), mapName(fromLabel)); } else { return new JsContinue(makeSourceInfo(contNode)); } }
683684685686687688689
JsNameRef labelRef = null; if (x.getLabel() != null) { JsLabel label = (JsLabel) pop(); // label labelRef = label.getName().makeRef(x.getSourceInfo()); } push(new JsContinue(x.getSourceInfo(), labelRef)); }
581582583584585586587
JsNameRef labelRef = null; if (x.getLabel() != null) { JsLabel label = (JsLabel) pop(); // label labelRef = label.getName().makeRef(); } push(new JsContinue(labelRef)); }
826827828829830831832
456457458459460461462463464465
} private JsContinue mapContinue(Node contNode) { Node fromLabel = contNode.getFirstChild(); if (fromLabel != null) { return new JsContinue(mapName(fromLabel)); } else { return new JsContinue(); } }
542543544545546547548
477478479480481482483484485486
545546547548549550551
961962963964965966967
JsNameRef labelRef = null; if (x.getLabel() != null) { JsLabel label = pop(); // label labelRef = label.getName().makeRef(x.getSourceInfo()); } push(new JsContinue(x.getSourceInfo(), labelRef)); }
494495496497498499500501502503