diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-12-01 01:08:30 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-12-01 01:08:30 +0800 |
commit | 8e41f1d067e3ce5f77bc9fe7c03d404da5553c60 (patch) | |
tree | 93f2852a80dbd8179e858b9683048120f58a878f /test | |
parent | 47e17129cd6d21eec1e8d9d402481153d4c8e0a3 (diff) | |
download | lua-language-server-8e41f1d067e3ce5f77bc9fe7c03d404da5553c60.zip |
update completion of enum
Diffstat (limited to 'test')
-rw-r--r-- | test/completion/init.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/completion/init.lua b/test/completion/init.lua index ba6676eb..56046645 100644 --- a/test/completion/init.lua +++ b/test/completion/init.lua @@ -1881,3 +1881,13 @@ local t = type() print(t == $) ]] (EXISTS) + +TEST [[ +if type(arg) == '$' +]] +(EXISTS) + +TEST [[ +if type(arg) == $ +]] +(EXISTS) |