instead of using pre-compiled variable lists for remote member access get the variable list from the remote script on the fly

This commit is contained in:
Marc Zinnschlag 2014-02-14 11:15:16 +01:00
parent e76ef92669
commit 451e1f413b
6 changed files with 105 additions and 11 deletions

View file

@ -75,4 +75,9 @@ bool Compiler::DeclarationParser::parseSpecial (int code, const TokenLoc& loc, S
return false;
return Parser::parseSpecial (code, loc, scanner);
}
void Compiler::DeclarationParser::reset()
{
mState = State_Begin;
}