diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-11-20 21:57:09 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-11-20 21:57:09 +0800 |
commit | 4ca61ec457822dd14966afa0752340ae8ce180a1 (patch) | |
tree | ae8adb1ad82c717868e551e699fd3cf3bb290089 /test-beta/definition/bug.lua | |
parent | c63b2e404d8d2bb984afe3678a5ba2b2836380cc (diff) | |
download | lua-language-server-4ca61ec457822dd14966afa0752340ae8ce180a1.zip |
no longer beta
Diffstat (limited to 'test-beta/definition/bug.lua')
-rw-r--r-- | test-beta/definition/bug.lua | 131 |
1 files changed, 0 insertions, 131 deletions
diff --git a/test-beta/definition/bug.lua b/test-beta/definition/bug.lua deleted file mode 100644 index 0550b3b9..00000000 --- a/test-beta/definition/bug.lua +++ /dev/null @@ -1,131 +0,0 @@ -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 [[ -self.results = { - <!labels!> = {}, -} -self[self.results.<?labels?>] = lbl -]] - -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() -]] - -TEST [[ -local mt = {} - -function mt:<!add!>(a, b) -end - -local function init() - return mt -end - -local t = init() -t:<?add?>() -]] - -TEST [[ -local mt = {} -mt.__index = mt - -function mt:<!add!>(a, b) -end - -local function init() - return setmetatable({}, mt) -end - -local t = init() -t:<?add?>() -]] |