(svn r24678) -Codechange: Introduce scope resolver base class and prepare for adding derived classes.

This commit is contained in:
alberth
2012-11-10 20:37:31 +00:00
parent fa3d470a05
commit 438495b433
15 changed files with 173 additions and 29 deletions

View File

@@ -162,7 +162,7 @@ public:
ResolverObject ro;
memset(&ro, 0, sizeof(ro));
this->Resolve(&ro, index);
return ro.GetVariable(&ro, var, param, avail);
return ro.GetScope(ro.scope)->GetVariable(var, param, avail);
}
/**