Skip to content

Commit dad7348

Browse files
committed
fix #566
1 parent 6dd8b14 commit dad7348

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# changelog
22

3+
## 2.0.1
4+
* `FIX` [#566](https://github.com/sumneko/lua-language-server/issues/566)
5+
36
## 2.0.0
47
`2021-6-21`
58
* `NEW` implement

script/core/searcher.lua

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ local ignoredIDs = {
1515
['dn:nil'] = true,
1616
['dn:any'] = true,
1717
['dn:boolean'] = true,
18-
['dn:string'] = true,
1918
['dn:table'] = true,
2019
['dn:number'] = true,
2120
['dn:integer'] = true,

test/diagnostics/init.lua

+7
Original file line numberDiff line numberDiff line change
@@ -1127,3 +1127,10 @@ for x in each() do
11271127
print(x)
11281128
end
11291129
]]
1130+
1131+
TEST [[
1132+
---@type string
1133+
local s
1134+
1135+
print(s:upper())
1136+
]]

0 commit comments

Comments
 (0)