write code file after successfull parsing

This commit is contained in:
Marc Zinnschlag 2010-06-28 14:07:55 +02:00
parent 0cfeab622d
commit a3ad61b4d0
9 changed files with 63 additions and 13 deletions

View file

@ -17,6 +17,11 @@ namespace Compiler
{
return mName;
}
void FileParser::getCode (std::vector<Interpreter::Type_Code>& code) const
{
mScriptParser.getCode (code);
}
bool FileParser::parseName (const std::string& name, const TokenLoc& loc,
Scanner& scanner)