summaryrefslogtreecommitdiff
path: root/server/src/matcher
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2018-12-13 21:02:39 +0800
committer最萌小汐 <sumneko@hotmail.com>2018-12-13 21:02:39 +0800
commitea6bf371230b12e478139afb3730c7aa9d5edcd9 (patch)
tree71d577ff3d954fb01025f05f3bff1f607bde3931 /server/src/matcher
parentf0d11c1763a77dfd99b7eaccab042accdcfe8b20 (diff)
downloadlua-language-server-ea6bf371230b12e478139afb3730c7aa9d5edcd9.zip
排除掉arg
Diffstat (limited to 'server/src/matcher')
-rw-r--r--server/src/matcher/diagnostics.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/matcher/diagnostics.lua b/server/src/matcher/diagnostics.lua
index 28a18013..f3aeb9c4 100644
--- a/server/src/matcher/diagnostics.lua
+++ b/server/src/matcher/diagnostics.lua
@@ -28,7 +28,8 @@ local function searchUndefinedGlobal(results, callback)
goto NEXT_VAR
end
if type(index) == 'string' then
- if index:lower() == 'log' then
+ local lIndex = index:lower()
+ if lIndex == 'log' or lIndex == 'arg' then
goto NEXT_VAR
end
if not index:find '%l' then