diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-03-22 16:33:24 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-03-22 16:33:24 +0800 |
commit | 7bcee6ad40204b0f3632ed7b8024d6902afb2e73 (patch) | |
tree | d53da7df7324d680c94ad5c05ec7b766db5cff42 | |
parent | 5731df3b2266503fe99bf674110ac19a730ce070 (diff) | |
download | lua-language-server-7bcee6ad40204b0f3632ed7b8024d6902afb2e73.zip |
missed mark check
-rw-r--r-- | script/core/guide.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/script/core/guide.lua b/script/core/guide.lua index f3492988..9dc94390 100644 --- a/script/core/guide.lua +++ b/script/core/guide.lua @@ -2251,6 +2251,9 @@ function m.checkSameSimpleInCallInSameFile(status, func, args, index) end function m.checkSameSimpleInCall(status, ref, start, pushQueue, mode) + if status.share.inBeSetValue and status.share.inBeSetValue > 0 then + return + end local func, args, index = m.getCallValue(ref) if not func then return |