summaryrefslogtreecommitdiff
path: root/script-beta/test/definition/bug.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-11-23 00:05:30 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-11-23 00:05:30 +0800
commit6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444 (patch)
treefdc22d78150fd1c5edc46732c8b151ccfefb519f /script-beta/test/definition/bug.lua
parentd0ff66c9abe9d6abbca12fd811e0c3cb69c1033a (diff)
downloadlua-language-server-6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444.zip
正路目录
Diffstat (limited to 'script-beta/test/definition/bug.lua')
-rw-r--r--script-beta/test/definition/bug.lua102
1 files changed, 0 insertions, 102 deletions
diff --git a/script-beta/test/definition/bug.lua b/script-beta/test/definition/bug.lua
deleted file mode 100644
index 823db46d..00000000
--- a/script-beta/test/definition/bug.lua
+++ /dev/null
@@ -1,102 +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()
-]]