Updated indicator processing to improve performance on large files.

This commit is contained in:
Paul Kulchenko
2014-10-02 16:41:16 -07:00
parent 665e2f9af1
commit 404537f1eb
2 changed files with 7 additions and 6 deletions

View File

@@ -94,7 +94,7 @@ return {
local varnext = {}
PARSE.parse_scope_resolve(lx, function(op, name, lineinfo, vars)
if not(op == 'Id' or op == 'Statement' or op == 'Var'
or op == 'Function'
or op == 'Function' or op == 'String'
or op == 'VarNext' or op == 'VarInside' or op == 'VarSelf'
or op == 'FunctionCall' or op == 'Scope' or op == 'EndScope') then
return end -- "normal" return; not interested in other events