diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-12-11 14:04:53 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-12-11 14:04:53 +0800 |
commit | a88ec1e85da0207ae4b1a481c4fb8ea8e0c829b6 (patch) | |
tree | 9a060ac7a7871848c86589129aa0aa878c47914a /server/src/matcher/vm.lua | |
parent | c009af6f26e4bc52b99544d069a70de79b60ee1c (diff) | |
download | lua-language-server-a88ec1e85da0207ae4b1a481c4fb8ea8e0c829b6.zip |
修正bug
Diffstat (limited to 'server/src/matcher/vm.lua')
-rw-r--r-- | server/src/matcher/vm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/matcher/vm.lua b/server/src/matcher/vm.lua index 38e64f5e..32dbc7a9 100644 --- a/server/src/matcher/vm.lua +++ b/server/src/matcher/vm.lua @@ -145,7 +145,7 @@ function mt:createFunction(exp, object) self.chunk:cut 'labels' local stop - self:forList(exp.args, function (arg) + self:forList(exp.arg, function (arg) if stop then return end |