diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-11-07 14:38:41 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-11-07 14:38:41 +0800 |
commit | 6176475e3fabd4506a8c59222d3c83dbeeb2f1eb (patch) | |
tree | b9a027aac314ac07cb630addc07d8b707ecbf52c /test/highlight/init.lua | |
parent | b1e0cdbeb13656f1fcd6cb2d45b8095e5b511457 (diff) | |
download | lua-language-server-6176475e3fabd4506a8c59222d3c83dbeeb2f1eb.zip |
don't find other locals
fix #1670
Diffstat (limited to 'test/highlight/init.lua')
-rw-r--r-- | test/highlight/init.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/highlight/init.lua b/test/highlight/init.lua index 1bd6cf35..4baea6f6 100644 --- a/test/highlight/init.lua +++ b/test/highlight/init.lua @@ -141,3 +141,16 @@ TEST [[ <!TEST1!> = 1 TEST2 = 2 ]] + +TEST [[ +local zing = foo +local foo = 4 + +local bar = { + <!baz!> = foo +} + +bar.<!baz!> = 5 + +print(bar.<!baz!>) +]] |