summaryrefslogtreecommitdiff
path: root/script/parser/compile.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2020-12-04 11:35:53 +0800
committer最萌小汐 <sumneko@hotmail.com>2020-12-04 11:35:53 +0800
commitd031852bf13cdf195bb834848f6f7ddba0b1b4ac (patch)
treeeeafc3272dc0bc84753461e7a357558dcc0b035d /script/parser/compile.lua
parenta7f8fb8b3bfbd3fb23d208cf789d276961a28056 (diff)
downloadlua-language-server-d031852bf13cdf195bb834848f6f7ddba0b1b4ac.zip
new setting `runtime.unicodeName`
Diffstat (limited to 'script/parser/compile.lua')
-rw-r--r--script/parser/compile.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/parser/compile.lua b/script/parser/compile.lua
index 2c7172e8..56ce2489 100644
--- a/script/parser/compile.lua
+++ b/script/parser/compile.lua
@@ -533,7 +533,7 @@ local function PostCompile()
end
return function (self, lua, mode, version, options)
- local state, err = self:parse(lua, mode, version)
+ local state, err = self:parse(lua, mode, version, options)
if not state then
return nil, err
end