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.
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#ifndef COMPILER_QUICKFILEPARSER_H_INCLUDED
|
|
#define COMPILER_QUICKFILEPARSER_H_INCLUDED
|
|
|
|
#include "declarationparser.hpp"
|
|
#include "parser.hpp"
|
|
|
|
namespace Compiler
|
|
{
|
|
class Locals;
|
|
|
|
/// \brief File parser variant that ignores everything but variable declarations
|
|
class QuickFileParser : public Parser
|
|
{
|
|
DeclarationParser mDeclarationParser;
|
|
|
|
public:
|
|
QuickFileParser(ErrorHandler& errorHandler, const Context& context, Locals& locals);
|
|
|
|
bool parseName(const std::string& name, const TokenLoc& loc, Scanner& scanner) override;
|
|
///< Handle a name token.
|
|
/// \return fetch another token?
|
|
|
|
bool parseKeyword(int keyword, const TokenLoc& loc, Scanner& scanner) override;
|
|
///< Handle a keyword token.
|
|
/// \return fetch another token?
|
|
|
|
bool parseSpecial(int code, const TokenLoc& loc, Scanner& scanner) override;
|
|
///< Handle a special character token.
|
|
/// \return fetch another token?
|
|
|
|
void parseEOF(Scanner& scanner) override;
|
|
///< Handle EOF token.
|
|
};
|
|
}
|
|
|
|
#endif
|