diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-12-05 18:15:36 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-12-05 18:15:36 +0800 |
commit | 8c771238ca3df91441d538e587a68ece23ecc02f (patch) | |
tree | 03a4175d6a1a7f0c2d4e5cb84ade1c59f23981fe /server/src/matcher/find_result.lua | |
parent | a8fd968dd81edb45d13f527cebd405d5abbbfd80 (diff) | |
download | lua-language-server-8c771238ca3df91441d538e587a68ece23ecc02f.zip |
改名做一些检查
Diffstat (limited to 'server/src/matcher/find_result.lua')
-rw-r--r-- | server/src/matcher/find_result.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/src/matcher/find_result.lua b/server/src/matcher/find_result.lua index b9313510..0b06ccad 100644 --- a/server/src/matcher/find_result.lua +++ b/server/src/matcher/find_result.lua @@ -9,6 +9,7 @@ return function (results, pos) return { type = 'var', var = var, + info = info, } end end @@ -19,6 +20,7 @@ return function (results, pos) return { type = 'dots', dots = dots, + info = info, } end end @@ -29,6 +31,7 @@ return function (results, pos) return { type = 'label', label = label, + info = info, } end end |