1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-15 22:49:48 +00:00
OpenMW/components/compiler/discardparser.hpp

50 lines
1.4 KiB
C++
Raw Normal View History

#ifndef COMPILER_DISCARDPARSER_H_INCLUDED
#define COMPILER_DISCARDPARSER_H_INCLUDED
#include "parser.hpp"
#include "tokenloc.hpp"
namespace Compiler
{
/// \brief Parse a single optional numeric value or string and discard it
class DiscardParser : public Parser
{
2022-09-22 18:26:05 +00:00
enum State
{
StartState,
MinusState
};
2022-09-22 18:26:05 +00:00
State mState;
TokenLoc mTokenLoc;
2022-09-22 18:26:05 +00:00
public:
DiscardParser(ErrorHandler& errorHandler, const Context& context);
2022-09-22 18:26:05 +00:00
bool parseInt(int value, const TokenLoc& loc, Scanner& scanner) override;
///< Handle an int token.
/// \return fetch another token?
2022-09-22 18:26:05 +00:00
bool parseFloat(float value, const TokenLoc& loc, Scanner& scanner) override;
///< Handle a float token.
/// \return fetch another token?
2022-09-22 18:26:05 +00:00
bool parseName(const std::string& name, const TokenLoc& loc, Scanner& scanner) override;
///< Handle a name token.
/// \return fetch another token?
2022-09-22 18:26:05 +00:00
bool parseSpecial(int code, const TokenLoc& loc, Scanner& scanner) override;
///< Handle a special character token.
/// \return fetch another token?
2022-09-22 18:26:05 +00:00
void reset() override;
///< Reset parser to clean state.
2022-09-22 18:26:05 +00:00
/// Returns TokenLoc object for value. If no value has been parsed, the TokenLoc
/// object will be default initialised.
const TokenLoc& getTokenLoc() const;
};
}
#endif