diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-03-28 22:28:24 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-03-28 22:28:24 +0800 |
commit | e745667530f0d4fd340beebc1545f86c76c78af1 (patch) | |
tree | 90444f218bfc26a44ac2997f8e619f354afae058 /test/references/common.lua | |
parent | d79bad83b120ab4a04bed447fad62789f21f24b5 (diff) | |
download | lua-language-server-e745667530f0d4fd340beebc1545f86c76c78af1.zip |
update
Diffstat (limited to 'test/references/common.lua')
-rw-r--r-- | test/references/common.lua | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/test/references/common.lua b/test/references/common.lua index e95a4031..2331aa91 100644 --- a/test/references/common.lua +++ b/test/references/common.lua @@ -1,6 +1,6 @@ local config = require "config" TEST [[ -local <!<?a?>!> = 1 +local <?a?> = 1 <!a!> = <!a!> ]] @@ -38,12 +38,12 @@ end TEST [[ local a = 1 -local <!<?a?>!> = 1 +local <?a?> = 1 <!a!> = <!a!> ]] TEST [[ -local <!<?a?>!> +local <?a?> local b = <!a!> ]] @@ -81,22 +81,9 @@ t[a.b.c] = 1 TEST [[ local t = {} t.x = 1 -t[a.b.<?x?>] = 1 +t[a.b.<!<?x?>!>] = 1 ]] -config.set(nil, 'Lua.IntelliSense.traceBeSetted', true) -TEST [[ -local t -local <!f!> = t.<?f?> - -<!f!>() - -return { - <!f!> = <!f!>, -} -]] -config.set(nil, 'Lua.IntelliSense.traceBeSetted', false) - TEST [[ self = { results = { @@ -112,22 +99,36 @@ print(a.b.<!c!>) ]] TEST [[ -local <!mt!> = {} +local mt = {} +function mt:x() + <!<?self?>!>:x() +end +]] + +TEST [[ +local <?mt?> = {} function <!mt!>:x() - <?self?>:x() + self:x() +end +]] + +TEST [[ +local mt = {} +function mt:x() + self:<!<?x?>!>() end ]] TEST [[ local mt = {} -function mt:<!x!>() - self:<?x?>() +function mt:<?x?>() + self:<!x!>() end ]] TEST [[ a.<!b!>.c = 1 -print(a.<?b?>.c) +print(a.<!<?b?>!>.c) ]] config.set(nil, 'Lua.IntelliSense.traceBeSetted', true) |