Skip to content

Commit

Permalink
fix #566
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Jun 21, 2021
1 parent 6dd8b14 commit dad7348
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# changelog

## 2.0.1
* `FIX` [#566](https://github.com/sumneko/lua-language-server/issues/566)

## 2.0.0
`2021-6-21`
* `NEW` implement
Expand Down
1 change: 0 additions & 1 deletion script/core/searcher.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ local ignoredIDs = {
['dn:nil'] = true,
['dn:any'] = true,
['dn:boolean'] = true,
['dn:string'] = true,
['dn:table'] = true,
['dn:number'] = true,
['dn:integer'] = true,
Expand Down
7 changes: 7 additions & 0 deletions test/diagnostics/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1127,3 +1127,10 @@ for x in each() do
print(x)
end
]]

TEST [[
---@type string
local s
print(s:upper())
]]

0 comments on commit dad7348

Please sign in to comment.