diff options
Diffstat (limited to 'src/lparser.js')
-rw-r--r-- | src/lparser.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lparser.js b/src/lparser.js index ddd514e..d183d25 100644 --- a/src/lparser.js +++ b/src/lparser.js @@ -118,7 +118,7 @@ class FuncState { } } - /* description of active local variable */ +/* description of active local variable */ class Vardesc { constructor() { this.idx = NaN; /* variable index in stack */ @@ -214,7 +214,7 @@ const check_match = function(ls, what, who, where) { else llex.luaX_syntaxerror(ls, lobject.luaO_pushfstring(ls.L, defs.to_luastring("%s expected (to close %s at line %d)"), - llex.luaX_token2str(ls, what), llex.luaX_token2str(ls, who), where)); + llex.luaX_token2str(ls, what), llex.luaX_token2str(ls, who), where)); } }; @@ -351,7 +351,7 @@ const singlevar = function(ls, vr) { let varname = str_checkname(ls); let fs = ls.fs; singlevaraux(fs, varname, vr, 1); - if (vr.k === expkind.VVOID) { /* global name? */ + if (vr.k === expkind.VVOID) { /* is global name? */ let key = new expdesc(); singlevaraux(fs, ls.envn, vr, 1); /* get environment variable */ assert(vr.k !== expkind.VVOID); /* this one must exist */ @@ -504,8 +504,8 @@ const breaklabel = function(ls) { */ const undefgoto = function(ls, gt) { let msg = llex.isreserved(gt.name) - ? "<%s> at line %d not inside a loop" - : "no visible label '%s' for <goto> at line %d"; + ? "<%s> at line %d not inside a loop" + : "no visible label '%s' for <goto> at line %d"; msg = lobject.luaO_pushfstring(ls.L, defs.to_luastring(msg), gt.name.getstr(), gt.line); semerror(ls, msg); }; @@ -1166,8 +1166,8 @@ const checkrepeated = function(fs, ll, label) { for (let i = fs.bl.firstlabel; i < ll.n; i++) { if (eqstr(label, ll.arr[i].name)) { let msg = lobject.luaO_pushfstring(fs.ls.L, - defs.to_luastring("label '%s' already defined on line %d", true), - label.getstr(), ll.arr[i].line); + defs.to_luastring("label '%s' already defined on line %d", true), + label.getstr(), ll.arr[i].line); semerror(fs.ls, msg); } } @@ -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 */ |