diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-03-12 15:46:12 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-03-12 15:46:12 +0800 |
commit | 632f171ef0b7f4a6fc6d9c789430a7026335b03f (patch) | |
tree | aa7f111d292b98663747c06a9c04e5ced4fe7a1f /server/test | |
parent | 877540a64b8a2cbf51f8b67f9f31d397957f3654 (diff) | |
download | lua-language-server-632f171ef0b7f4a6fc6d9c789430a7026335b03f.zip |
修正一个bug
Diffstat (limited to 'server/test')
-rw-r--r-- | server/test/references/init.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/test/references/init.lua b/server/test/references/init.lua index 2699fb70..59026031 100644 --- a/server/test/references/init.lua +++ b/server/test/references/init.lua @@ -71,3 +71,10 @@ local a = 1 local <!a!> = 1 <?a?> = <?a?> ]] + +TEST [[ +local t = { + <?a?> = 1 +} +print(t.<!a!>) +]] |