Restore old labeled break semantics

This commit is contained in:
Lennart Kats 2013-02-20 18:31:21 +01:00
commit b815db63cd

View file

@ -1925,16 +1925,19 @@ klass:
for (;;) {
minus = false;
var breakOuterLoop;
for (;;) {
if (t.type === "special" && t.value === "*/") {
minus = false;
continue;
breakOuterLoop = true;
break;
}
if (t.id !== "(endline)" && t.id !== ",") {
break;
}
t = lex.token();
}
if (breakOuterLoop)
break;
if (o === "/*global" && t.value === "-") {
minus = true;