summaryrefslogtreecommitdiff
path: root/server/test/definition/emmy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server/test/definition/emmy.lua')
-rw-r--r--server/test/definition/emmy.lua91
1 files changed, 0 insertions, 91 deletions
diff --git a/server/test/definition/emmy.lua b/server/test/definition/emmy.lua
deleted file mode 100644
index ee8fa6a7..00000000
--- a/server/test/definition/emmy.lua
+++ /dev/null
@@ -1,91 +0,0 @@
-TEST [[
----@class <!A!>
----@class B : <?A?>
-]]
-
-TEST [[
----@class <!A!>
----@type B|<?A?>
-]]
-
-TEST [[
----@class A
-local mt = {}
-function mt:<!cast!>()
-end
-
----@type A
-local obj
-obj:<?cast?>()
-]]
-
-TEST [[
----@class A
-local <!mt!> = {}
-function mt:cast()
-end
-
----@type A
-local <!obj!>
-<?obj?>:cast()
-]]
-
-TEST [[
----@type A
-local <?<!obj!>?>
-
----@class A
-local <!mt!>
-]]
-
-TEST [[
----@type A
-local obj
-obj:<?func?>()
-
----@class A
-local mt
-function mt:<!func!>()
-end
-]]
-
-TEST [[
----@type A
-local obj
-obj:<?func?>()
-
-local mt = {}
-mt.__index = mt
-function mt:<!func!>()
-end
----@class A
-local obj = setmetatable({}, mt)
-]]
-
-TEST [[
----@alias <!B A!>
----@type <?B?>
-]]
-
-TEST [[
----@class <!Class!>
----@param a <?Class?>
-]]
-
-TEST [[
----@class Class
----@field <!name string!>
----@field id integer
-local mt = {}
-mt.<?name?>
-]]
-
-TEST [[
----@class loli
-local unit
-
-function unit:<!pants!>()
-end
-
----@see loli#<?pants?>
-]]