mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/ejabberdsql2prosody: Track current line for error reporting
This commit is contained in:
parent
c372e5d38c
commit
662e7a289f
1 changed files with 6 additions and 2 deletions
|
@ -21,12 +21,16 @@ function parseFile(filename)
|
|||
|
||||
local file = nil;
|
||||
local last = nil;
|
||||
local line = 1;
|
||||
local function read(expected)
|
||||
local ch;
|
||||
if last then
|
||||
ch = last; last = nil;
|
||||
else ch = file:read(1); end
|
||||
if expected and ch ~= expected then error("expected: "..expected.."; got: "..(ch or "nil")); end
|
||||
else
|
||||
ch = file:read(1);
|
||||
if ch == "\n" then line = line + 1; end
|
||||
end
|
||||
if expected and ch ~= expected then error("expected: "..expected.."; got: "..(ch or "nil").." on line "..line); end
|
||||
return ch;
|
||||
end
|
||||
local function pushback(ch)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue