Skip to content

Commit da0050c

Browse files
committed
using a better name to the variable tha represents the farthest position
1 parent 4ad5660 commit da0050c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua-parser/parser.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,10 +461,10 @@ local syntaxerror = validator.syntaxerror
461461
function parser.parse (subject, filename)
462462
local errorinfo = { subject = subject, filename = filename }
463463
lpeg.setmaxstack(1000)
464-
local ast, label, sfail = lpeg.match(G, subject, nil, errorinfo)
464+
local ast, label, errorpos = lpeg.match(G, subject, nil, errorinfo)
465465
if not ast then
466466
local errmsg = labels[label][2]
467-
return ast, syntaxerror(errorinfo, sfail, errmsg)
467+
return ast, syntaxerror(errorinfo, errorpos, errmsg)
468468
end
469469
return validate(ast, errorinfo)
470470
end

0 commit comments

Comments
 (0)