From 73346dc8725835b66bf506a48d8f24a12b017257 Mon Sep 17 00:00:00 2001 From: Milind Gupta Date: Fri, 21 Sep 2018 00:35:06 -0700 Subject: [PATCH] Fixed issue where ... was not identified as an identifier and error produced in the code containing it. --- minify.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/minify.lua b/minify.lua index 41d7a60..05a861c 100644 --- a/minify.lua +++ b/minify.lua @@ -392,9 +392,13 @@ function CreateLuaTokenStream(text) get() if look() == '.' then get() + token('Ident') + else + token('Symbol') end + else + token('Symbol') end - token('Symbol') elseif EqualSymbols[c1] then if look() == '=' then p = p + 1