We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54a488b commit 767db22Copy full SHA for 767db22
changelog.md
@@ -11,7 +11,7 @@
11
* `FIX` with clients that support LSP 3.17 (VSCode), workspace diagnostics are triggered every time when opening a file.
12
* `FIX` [#1204](https://github.com/sumneko/lua-language-server/issues/1204)
13
14
-## 3.2.51204
+## 3.2.5
15
`2022-6-9`
16
* `NEW` provide config docs in `LUA_LANGUAGE_SERVER/doc/`
17
* `FIX` [#1148](https://github.com/sumneko/lua-language-server/issues/1148)
script/vm/def.lua
@@ -85,7 +85,7 @@ local nodeSwitch;nodeSwitch = util.switch()
85
local parentNode = vm.compileNode(source.node)
86
local uri = guide.getUri(source)
87
local key = guide.getKeyName(source)
88
- if not key then
+ if type(key) ~= 'string' then
89
return
90
end
91
if lastKey then
0 commit comments