summaryrefslogtreecommitdiff
path: root/script/vm
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-05-12 20:58:33 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-05-12 20:58:33 +0800
commit49b0244734a579036c1d3f318ce435a94974c038 (patch)
tree936e78c91cc824cb6fc00e4b694f96dcd13295db /script/vm
parent813da76cc7f899d7a0eca5afb0f224cd64eaaab0 (diff)
downloadlua-language-server-49b0244734a579036c1d3f318ce435a94974c038.zip
resolve pcall
Diffstat (limited to 'script/vm')
-rw-r--r--script/vm/vm.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/script/vm/vm.lua b/script/vm/vm.lua
index b7eb1cde..ebd0102b 100644
--- a/script/vm/vm.lua
+++ b/script/vm/vm.lua
@@ -4,15 +4,11 @@ local files = require 'files'
local timer = require 'timer'
local setmetatable = setmetatable
-local assert = assert
-local require = require
-local type = type
local running = coroutine.running
local ipairs = ipairs
local log = log
local xpcall = xpcall
local mathHuge = math.huge
-local collectgarbage = collectgarbage
_ENV = nil
@@ -63,10 +59,6 @@ function m.getArgInfo(source)
return nil
end
-function m.getSpecial(source)
- return guide.getSpecial(source)
-end
-
function m.getKeyName(source)
if not source then
return nil