tools/erlparse: Handle decimal point in numbers.

This commit is contained in:
Waqas Hussain 2012-08-04 23:55:52 +05:00
parent d69fd55cf6
commit 6ae2292381

View file

@ -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;