2014-02-14 10:15:16 +00:00
|
|
|
#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:
|
2014-02-14 11:23:00 +00:00
|
|
|
QuickFileParser(ErrorHandler& errorHandler, const Context& context, Locals& locals);
|
2014-02-14 10:15:16 +00:00
|
|
|
|
2014-02-14 11:23:00 +00:00
|
|
|
bool parseName(const std::string& name, const TokenLoc& loc, Scanner& scanner) override;
|
|
|
|
///< Handle a name token.
|
|
|
|
/// \return fetch another token?
|
2014-02-14 10:15:16 +00:00
|
|
|
|
2020-10-16 18:18:54 +00:00
|
|
|
bool parseKeyword(int keyword, const TokenLoc& loc, Scanner& scanner) override;
|
2014-02-14 10:15:16 +00:00
|
|
|
///< Handle a keyword token.
|
|
|
|
/// \return fetch another token?
|
|
|
|
|
2020-10-16 18:18:54 +00:00
|
|
|
bool parseSpecial(int code, const TokenLoc& loc, Scanner& scanner) override;
|
2014-02-14 10:15:16 +00:00
|
|
|
///< Handle a special character token.
|
|
|
|
/// \return fetch another token?
|
|
|
|
|
2020-10-16 18:18:54 +00:00
|
|
|
void parseEOF(Scanner& scanner) override;
|
2014-02-14 10:15:16 +00:00
|
|
|
///< Handle EOF token.
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|