summaryrefslogtreecommitdiff
path: root/server-beta/src/seacher/string.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server-beta/src/seacher/string.lua')
-rw-r--r--server-beta/src/seacher/string.lua43
1 files changed, 0 insertions, 43 deletions
diff --git a/server-beta/src/seacher/string.lua b/server-beta/src/seacher/string.lua
deleted file mode 100644
index 3f36ee59..00000000
--- a/server-beta/src/seacher/string.lua
+++ /dev/null
@@ -1,43 +0,0 @@
-local guide = require 'parser.guide'
-
-local m = {}
-
-function m:eachDef(source, callback)
- local parent = source.parent
- if not parent then
- return
- end
- if parent.type ~= 'setindex' and parent.type ~= 'getindex' then
- return
- end
- local node = parent.node
- local key = guide.getKeyName(source)
- self:eachField(node, key, function (src, mode)
- if mode == 'set' then
- callback(src, mode)
- end
- end)
-end
-
-function m:eachRef(source, callback)
- local parent = source.parent
- if not parent then
- return
- end
- if parent.type ~= 'setindex' and parent.type ~= 'getindex' then
- return
- end
- local node = parent.node
- local key = guide.getKeyName(source)
- self:eachField(node, key, function (src, mode)
- if mode == 'set' or mode == 'get' then
- callback(src, mode)
- end
- end)
-end
-
-function m:eachValue(source, callback)
- callback(source)
-end
-
-return m