diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-16 17:31:45 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-16 17:31:45 +0800 |
commit | c828a3373bb1eec3e59a48f08fdffa5fbc5f4a8a (patch) | |
tree | 4a2a1202243bb69bdff3e0678e8c6493b25f4312 /script | |
parent | 923ede4e6dc4280b2c33bec1374c4aada0afa11d (diff) | |
download | lua-language-server-c828a3373bb1eec3e59a48f08fdffa5fbc5f4a8a.zip |
update
Diffstat (limited to 'script')
-rw-r--r-- | script/core/noder.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/script/core/noder.lua b/script/core/noder.lua index 9342117d..04066160 100644 --- a/script/core/noder.lua +++ b/script/core/noder.lua @@ -766,10 +766,7 @@ local function bindValue(noders, source, id) -- x = y : x -> y pushForward(noders, id, valueID, INFO_REJECT_SET) if not config.get 'Lua.IntelliSense.traceBeSetted' - and source.type ~= 'local' - and source.type ~= 'tablefield' - and source.type ~= 'tableindex' - and source.type ~= 'setglobal' then + and source.type ~= 'local' then return end -- 参数/call禁止反向查找赋值 |