summaryrefslogtreecommitdiff
path: root/script-beta
diff options
context:
space:
mode:
Diffstat (limited to 'script-beta')
-rw-r--r--script-beta/vm/eachDef.lua3
-rw-r--r--script-beta/vm/eachField.lua3
-rw-r--r--script-beta/vm/eachRef.lua3
-rw-r--r--script-beta/vm/getInfer.lua3
-rw-r--r--script-beta/vm/getLibrary.lua3
5 files changed, 0 insertions, 15 deletions
diff --git a/script-beta/vm/eachDef.lua b/script-beta/vm/eachDef.lua
index 0cd3c6ca..37ba4ec5 100644
--- a/script-beta/vm/eachDef.lua
+++ b/script-beta/vm/eachDef.lua
@@ -26,9 +26,6 @@ local function eachDef(source, deep)
end
function vm.getDefs(source, deep)
- if ALL_DEEP then
- deep = 'deep'
- end
if guide.isGlobal(source) then
local name = guide.getKeyName(source)
local cache = vm.getCache('eachDefOfGlobal')[name]
diff --git a/script-beta/vm/eachField.lua b/script-beta/vm/eachField.lua
index 798566b4..ac104267 100644
--- a/script-beta/vm/eachField.lua
+++ b/script-beta/vm/eachField.lua
@@ -47,9 +47,6 @@ local function eachField(source, deep)
end
function vm.getFields(source, deep)
- if ALL_DEEP then
- deep = 'deep'
- end
if guide.isGlobal(source) then
local name = guide.getKeyName(source)
local cache = vm.getCache('eachFieldOfGlobal')[name]
diff --git a/script-beta/vm/eachRef.lua b/script-beta/vm/eachRef.lua
index cd003443..95b91343 100644
--- a/script-beta/vm/eachRef.lua
+++ b/script-beta/vm/eachRef.lua
@@ -25,9 +25,6 @@ local function getRefs(source, deep)
end
function vm.getRefs(source, deep)
- if ALL_DEEP then
- deep = 'deep'
- end
if guide.isGlobal(source) then
local name = guide.getKeyName(source)
local cache = vm.getCache('eachRefOfGlobal')[name]
diff --git a/script-beta/vm/getInfer.lua b/script-beta/vm/getInfer.lua
index c7c422f4..5272c389 100644
--- a/script-beta/vm/getInfer.lua
+++ b/script-beta/vm/getInfer.lua
@@ -77,9 +77,6 @@ end
--- 获取对象的值
--- 会尝试穿透函数调用
function vm.getInfers(source, deep)
- if ALL_DEEP then
- deep = 'deep'
- end
if guide.isGlobal(source) then
local name = guide.getKeyName(source)
local cache = vm.getCache('getInfersOfGlobal')[name]
diff --git a/script-beta/vm/getLibrary.lua b/script-beta/vm/getLibrary.lua
index f5c643e9..91d7c2e4 100644
--- a/script-beta/vm/getLibrary.lua
+++ b/script-beta/vm/getLibrary.lua
@@ -37,9 +37,6 @@ local function getLibrary(source, deep)
end
function vm.getLibrary(source, deep)
- if ALL_DEEP then
- deep = 'deep'
- end
if guide.isGlobal(source) then
local name = guide.getKeyName(source)
local cache = vm.getCache('getLibraryOfGlobal')[name]