diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-12-04 15:58:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-12-04 15:58:32 +0800 |
commit | 96e499f4c62d7e444c74a4afebfd02211f3f9c16 (patch) | |
tree | a140dc162f2164b925ea1a529911abddb0113909 /script-beta/vm | |
parent | 33ca6151e44074754373a1eeebbd5f53e92f4fae (diff) | |
download | lua-language-server-96e499f4c62d7e444c74a4afebfd02211f3f9c16.zip |
暂时这么支持特殊call
Diffstat (limited to 'script-beta/vm')
-rw-r--r-- | script-beta/vm/eachRef.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script-beta/vm/eachRef.lua b/script-beta/vm/eachRef.lua index 9ab9d6cf..8c203cfa 100644 --- a/script-beta/vm/eachRef.lua +++ b/script-beta/vm/eachRef.lua @@ -481,6 +481,7 @@ local function eachRef(source, callback) ofValue(source, callback) elseif stype == 'call' then ofCall(source.node, 1, callback) + ofSpecialCall(source, source.node, 1, callback) elseif stype == 'main' then ofMain(source, callback) end |