diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 23:26:32 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 23:26:32 +0800 |
commit | d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a (patch) | |
tree | bb34518d70b85de7656dbdbe958dfa221a3ff3b3 /script/test/definition/bug.lua | |
parent | 0a2c2ad15e1ec359171fb0dd4c72e57c5b66e9ba (diff) | |
download | lua-language-server-d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a.zip |
整理一下目录结构
Diffstat (limited to 'script/test/definition/bug.lua')
-rw-r--r-- | script/test/definition/bug.lua | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/script/test/definition/bug.lua b/script/test/definition/bug.lua new file mode 100644 index 00000000..1d3ab02c --- /dev/null +++ b/script/test/definition/bug.lua @@ -0,0 +1,90 @@ +TEST [[ +local <!x!> +function _(x) +end +function _() + <?x?>() +end +]] + +TEST [[ +function _(<!x!>) + do return end + <?x?>() +end +]] + +TEST [[ +local <!a!> +function a:b() + a:b() + <?self?>() +end +]] + +TEST [[ +function _(...) + function _() + print(<?...?>) + end +end +]] + +TEST [[ +local <!a!> +(<?a?> / b)() +]] + +TEST [[ +local <!args!> +io.load(root / <?args?>.source / 'API' / path) +]] + +TEST [[ +obj[#<?obj?>+1] = {} +]] + +TEST [[ +self = { + results = { + <!labels!> = {}, + } +} +self[self.results.<?labels?>] = lbl +]] + +TEST [[ +local mt = {} +function mt:<!x!>() +end +mt:x() +mt:<?x?>() +]] + +TEST [[ +local function func(<!a!>) + x = { + xx(), + <?a?>, + } +end +]] + +TEST [[ +local <!x!> +local t = { + ..., + <?x?>, +} +]] + +TEST [[ +local a +local <!b!> +return f(), <?b?> +]] + +TEST [[ +local a = os.clock() +local <?<!b!>?> = os.clock() +]] |