mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
#include "quickfileparser.hpp"
|
|
|
|
#include "scanner.hpp"
|
|
#include "skipparser.hpp"
|
|
|
|
Compiler::QuickFileParser::QuickFileParser(ErrorHandler& errorHandler, const Context& context, Locals& locals)
|
|
: Parser(errorHandler, context)
|
|
, mDeclarationParser(errorHandler, context, locals)
|
|
{
|
|
}
|
|
|
|
bool Compiler::QuickFileParser::parseName(const std::string& name, const TokenLoc& loc, Scanner& scanner)
|
|
{
|
|
SkipParser skip(getErrorHandler(), getContext());
|
|
scanner.scan(skip);
|
|
return true;
|
|
}
|
|
|
|
bool Compiler::QuickFileParser::parseKeyword(int keyword, const TokenLoc& loc, Scanner& scanner)
|
|
{
|
|
if (keyword == Scanner::K_end)
|
|
return false;
|
|
|
|
if (keyword == Scanner::K_short || keyword == Scanner::K_long || keyword == Scanner::K_float)
|
|
{
|
|
mDeclarationParser.reset();
|
|
scanner.putbackKeyword(keyword, loc);
|
|
scanner.scan(mDeclarationParser);
|
|
return true;
|
|
}
|
|
|
|
SkipParser skip(getErrorHandler(), getContext());
|
|
scanner.scan(skip);
|
|
return true;
|
|
}
|
|
|
|
bool Compiler::QuickFileParser::parseSpecial(int code, const TokenLoc& loc, Scanner& scanner)
|
|
{
|
|
if (code != Scanner::S_newline)
|
|
{
|
|
SkipParser skip(getErrorHandler(), getContext());
|
|
scanner.scan(skip);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void Compiler::QuickFileParser::parseEOF(Scanner& scanner) {}
|