1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| // SymbolKind.hpp
| #ifndef SYMBOL_KIND_HPP
| #define SYMBOL_KIND_HPP
|
| #include <cstdint>
|
| namespace Symbols {
|
| enum class Kind : std::uint8_t {
| Variable,
| Constant,
| Function
| // Later: Module, Class, etc..
| };
|
| }; // namespace Symbols
|
| #endif
|
|