summaryrefslogtreecommitdiff
path: root/test/definition/table.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2020-11-20 21:55:41 +0800
committer最萌小汐 <sumneko@hotmail.com>2020-11-20 21:55:41 +0800
commitc63b2e404d8d2bb984afe3678a5ba2b2836380cc (patch)
treea70661effacc7a29caa8d49583673ac4be2faaf5 /test/definition/table.lua
parent85c5a4210e4447422cd5677369ae740ed65725a0 (diff)
downloadlua-language-server-c63b2e404d8d2bb984afe3678a5ba2b2836380cc.zip
remove the old version
Diffstat (limited to 'test/definition/table.lua')
-rw-r--r--test/definition/table.lua114
1 files changed, 0 insertions, 114 deletions
diff --git a/test/definition/table.lua b/test/definition/table.lua
deleted file mode 100644
index 90e7926f..00000000
--- a/test/definition/table.lua
+++ /dev/null
@@ -1,114 +0,0 @@
-TEST [[
-local <!t!>
-a = {
- <?t?>
-}
-]]
-
-TEST [[
-local t
-t.<!x!> = 1
-t.<?x?>()
-]]
-
-TEST [[
-t.<!x!> = 1
-t.<?x?>()
-]]
-
-TEST [[
-local <!t!>
-t.x = 1
-<?t?>.x = 1
-]]
-
-TEST [[
-t.<!x!> = 1
-t.<?x?>.y = 1
-]]
-
-TEST [[
-local t
-t.<!x!> = 1
-t.<?x?>()
-]]
-
-TEST [[
-local t
-t[<!1!>] = 1
-t[<?1?>]()
-]]
-
-TEST [[
-local t
-t[<!true!>] = 1
-t[<?true?>]()
-]]
-
-TEST [[
-local t
-t[<!"method"!>] = 1
-t[<?"method"?>]()
-]]
-
-TEST [[
-local t
-t[<!"longString"!>] = 1
-t[<?[==[longString]==]?>]()
-]]
-
-TEST [[
-local t
-t.<!x!> = 1
-t[<?'x'?>]()
-]]
-
-TEST [[
-local t
-t.<!a!> = 1
-t.<?a?>.b()
-]]
-
-TEST [[
-local t
-local <!x!>
-t[<?x?>]()
-]]
-
-TEST[[
-local <!t!>
-local _ = {
- _ = <?t?>
-}
-]]
-
-TEST[[
-local <!t!>
-t {
- _ = <?t?>.x
-}
-]]
-
-TEST[[
-local t = {
- <!insert!> = 1,
-}
-t.<?insert?>()
-]]
-
---TEST[[
---local t = {
--- <!insert!> = 1,
---}
---y.<?insert?>()
---]]
-
---TEST[[
---local t = {
--- <!insert!> = 1,
---}
---local y = {
--- insert = 1,
---}
---t.<?insert?>()
---]]