From 66de37c58ee8cfb336b8f3d17f97d7f05f210f6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Sun, 17 Apr 2022 04:50:21 +0800 Subject: cleanup --- script/vm/manager.lua | 3 --- 1 file changed, 3 deletions(-) (limited to 'script/vm/manager.lua') diff --git a/script/vm/manager.lua b/script/vm/manager.lua index b5c37c35..c75b777f 100644 --- a/script/vm/manager.lua +++ b/script/vm/manager.lua @@ -1,7 +1,6 @@ local files = require 'files' local globalManager = require 'vm.global-manager' -local localManager = require 'vm.local-manager' ---@alias vm.object parser.object | vm.global | vm.generic @@ -17,7 +16,6 @@ end files.watch(function (ev, uri) if ev == 'update' then globalManager.dropUri(uri) - localManager.dropUri(uri) local state = files.getState(uri) if state then globalManager.compileAst(state.ast) @@ -25,7 +23,6 @@ files.watch(function (ev, uri) end if ev == 'remove' then globalManager.dropUri(uri) - localManager.dropUri(uri) end end) -- cgit v1.2.3