mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/erlparse: Handle decimal point in numbers.
This commit is contained in:
parent
d69fd55cf6
commit
6ae2292381
1 changed files with 6 additions and 0 deletions
|
@ -95,6 +95,12 @@ local function readNumber()
|
|||
while isNumeric(peek()) do
|
||||
num[#num+1] = read();
|
||||
end
|
||||
if peek() == "." then
|
||||
num[#num+1] = read();
|
||||
while isNumeric(peek()) do
|
||||
num[#num+1] = read();
|
||||
end
|
||||
end
|
||||
return tonumber(t_concat(num));
|
||||
end
|
||||
local readItem = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue