diff options
author | sumneko <sumneko@hotmail.com> | 2019-04-22 20:31:58 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-04-22 20:31:58 +0800 |
commit | 93e2f3eba87b85a8bb819bd5557aa13145143be2 (patch) | |
tree | 2342310c233203938ce8f6c274a7adafe6792896 /server/test | |
parent | 05586ecd48300bbc4b8fb7f5a8e85a628eefda8e (diff) | |
download | lua-language-server-93e2f3eba87b85a8bb819bd5557aa13145143be2.zip |
修正windows平台下,require 没有无视大小写的BUG
Diffstat (limited to 'server/test')
-rw-r--r-- | server/test/crossfile/definition.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/server/test/crossfile/definition.lua b/server/test/crossfile/definition.lua index b824c9dc..aac08802 100644 --- a/server/test/crossfile/definition.lua +++ b/server/test/crossfile/definition.lua @@ -84,6 +84,18 @@ TEST { TEST { { path = 'a.lua', + content = '', + target = {0, 0}, + }, + { + path = 'b.lua', + content = 'require <?"A"?>', + }, +} + +TEST { + { + path = 'a.lua', content = 'local <!t!> = 1; return t', }, { |