added scriptrunning/startscript/stopscript; sorted out more case problems

This commit is contained in:
Marc Zinnschlag 2010-07-04 16:00:32 +02:00
parent 185f8bd56d
commit a61b2c39f0
26 changed files with 274 additions and 42 deletions

View file

@ -21,6 +21,7 @@ namespace Compiler
Literals& mLiterals;
State mState;
std::vector<Interpreter::Type_Code> mCode;
bool mSmashCase;
public:
@ -38,8 +39,11 @@ namespace Compiler
void append (std::vector<Interpreter::Type_Code>& code);
///< Append code for parsed string.
void smashCase();
///< Transform all scanned strings to lower case
void reset();
///< Reset parser to clean state.
///< Reset parser to clean state (this includes the smashCase function).
};
}