diff options
Diffstat (limited to 'src/lparser.js')
| -rw-r--r-- | src/lparser.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/lparser.js b/src/lparser.js index a42b5cc..d183d25 100644 --- a/src/lparser.js +++ b/src/lparser.js @@ -1340,7 +1340,7 @@ const test_then_block = function(ls, escapelist) {          lcode.luaK_goiffalse(ls.fs, v);  /* will jump to label if condition is true */          enterblock(fs, bl, false);  /* must enter block before 'goto' */          gotostat(ls, v.t);   /* handle goto/break */ -        while (testnext(ls, char[';'])) {}  /* skip colons */ +        while (testnext(ls, char[';']));  /* skip colons */          if (block_follow(ls, 0)) {  /* 'goto' is the entire block? */              leaveblock(fs);              return escapelist;  /* and that is it */ | 
