We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5adace3 commit 1e7e9ebCopy full SHA for 1e7e9eb
changelog.md
@@ -1,5 +1,8 @@
1
# changelog
2
3
+## 2.0.2
4
+* `FIX` [#570](https://github.com/sumneko/lua-language-server/issues/570)
5
+
6
## 2.0.1
7
`2021-6-21`
8
* `FIX` [#566](https://github.com/sumneko/lua-language-server/issues/566)
script/core/noder.lua
@@ -297,7 +297,7 @@ local function getID(source)
297
if current.type == 'paren' then
298
current = current.exp
299
if not current then
300
- break
+ return nil
301
end
302
goto CONTINUE
303
test/diagnostics/init.lua
@@ -1134,3 +1134,8 @@ local s
1134
1135
print(s:upper())
1136
]]
1137
1138
+TEST [[
1139
+local t = ().
1140
+return t
1141
+]]
0 commit comments