From 6ae2292381995460166fe1b1f47bdabbad1d04fe Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Sat, 4 Aug 2012 23:55:52 +0500 Subject: tools/erlparse: Handle decimal point in numbers. --- tools/erlparse.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/erlparse.lua b/tools/erlparse.lua index 287e45ba..174585d3 100644 --- a/tools/erlparse.lua +++ b/tools/erlparse.lua @@ -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; -- cgit v1.2.3