1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00
OpenMW/components/compiler/declarationparser.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.2 KiB
C++
Raw Normal View History

2014-02-10 12:01:52 +00:00
#ifndef COMPILER_DECLARATIONPARSER_H_INCLUDED
#define COMPILER_DECLARATIONPARSER_H_INCLUDED
#include "parser.hpp"
namespace Compiler
{
class Locals;
class DeclarationParser : public Parser
{
enum State
{
State_Begin,
State_Name,
State_End
};
Locals& mLocals;
State mState;
char mType;
public:
2014-02-14 11:23:00 +00:00
DeclarationParser(ErrorHandler& errorHandler, const Context& context, Locals& locals);
2014-02-10 12:01:52 +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-10 12:01:52 +00:00
bool parseKeyword(int keyword, const TokenLoc& loc, Scanner& scanner) override;
2014-02-10 12:01:52 +00:00
///< Handle a keyword token.
/// \return fetch another token?
bool parseSpecial(int code, const TokenLoc& loc, Scanner& scanner) override;
2014-02-10 12:01:52 +00:00
///< Handle a special character token.
/// \return fetch another token?
2021-10-13 20:44:18 +00:00
bool parseInt(int value, const TokenLoc& loc, Scanner& scanner) override;
///< Handle an int token.
/// \return fetch another token?
void reset() override;
2014-02-10 12:01:52 +00:00
};
}
#endif