Files
carbon-lang/toolchain/parser/parser_state.h
T
Jon Ross-Perkins 9e1a5cfaee Reuse EnumBase for interpreter's Builtin enum (#2688)
This was bugging me after I saw all the strings; it feels like this is why we have EnumBase on the toolchain side.

I've included the move of EnumBase to //common because I figured it's reasonable to evaluate together; if we don't want EnumBase in this case, it doesn't make sense to move.
2023-03-17 08:40:43 -07:00

35 lines
1.0 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef CARBON_TOOLCHAIN_PARSER_PARSER_STATE_H_
#define CARBON_TOOLCHAIN_PARSER_PARSER_STATE_H_
#include <cstdint>
#include "common/enum_base.h"
namespace Carbon {
CARBON_DEFINE_RAW_ENUM_CLASS(ParserState, uint8_t) {
#define CARBON_PARSER_STATE(Name) CARBON_RAW_ENUM_ENUMERATOR(Name)
#include "toolchain/parser/parser_state.def"
};
class ParserState : public CARBON_ENUM_BASE(ParserState) {
public:
#define CARBON_PARSER_STATE(Name) CARBON_ENUM_CONSTANT_DECLARATION(Name)
#include "toolchain/parser/parser_state.def"
};
#define CARBON_PARSER_STATE(Name) \
CARBON_ENUM_CONSTANT_DEFINITION(ParserState, Name)
#include "toolchain/parser/parser_state.def"
// We expect ParserState to fit compactly into 8 bits.
static_assert(sizeof(ParserState) == 1, "ParserState includes padding!");
} // namespace Carbon
#endif // CARBON_TOOLCHAIN_PARSER_PARSER_STATE_H_