diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-12-28 15:36:56 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-12-28 15:36:56 +0800 |
commit | a080b2516d2ce2efb65ad0fd26126cdfa6f6e4f8 (patch) | |
tree | b5672e03d11a43a56b63fe02d7b685eacd21ace4 /server/test/document_symbol/init.lua | |
parent | 549f6dd7ce8c733f9b51f5e93b3f14c1e2a44aca (diff) | |
download | lua-language-server-a080b2516d2ce2efb65ad0fd26126cdfa6f6e4f8.zip |
matcher -> core
Diffstat (limited to 'server/test/document_symbol/init.lua')
-rw-r--r-- | server/test/document_symbol/init.lua | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/server/test/document_symbol/init.lua b/server/test/document_symbol/init.lua index 5b1ed397..684e5449 100644 --- a/server/test/document_symbol/init.lua +++ b/server/test/document_symbol/init.lua @@ -1,5 +1,5 @@ local parser = require 'parser' -local matcher = require 'matcher' +local core = require 'core' local SymbolKind = { File = 1, @@ -63,9 +63,9 @@ end function TEST(script) return function (expect) local ast = parser:ast(script) - local vm = matcher.vm(ast) + local vm = core.vm(ast) assert(vm) - local result = matcher.documentSymbol(vm) + local result = core.documentSymbol(vm) assert(eq(expect, result)) end end @@ -83,3 +83,17 @@ end selectionRange = {16, 16}, } } + +TEST [[ +return function () +end +]] +{ + [1] = { + name = '', + detail = 'function f()', + kind = SymbolKind.Function, + range = {8, 22}, + selectionRange = {8, 8}, + } +} |