blob: 2040d28138cd8d49a99815cc66c2b12420e41a59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "math-server" project.
// For details, see https://github.com/egor-tensin/math-server.
// Distributed under the MIT License.
#pragma once
#include <ostream>
#include <string>
#include <type_traits>
#include <unordered_set>
namespace math::server::lexer::token {
enum class Type {
WHITESPACE,
PLUS,
MINUS,
ASTERISK,
SLASH,
CARET,
LEFT_PAREN,
RIGHT_PAREN,
NUMBER,
};
using TypeInt = std::underlying_type<Type>::type;
using TypeSet = std::unordered_set<Type>;
TypeInt type_to_int(Type);
std::string type_to_int_string(Type);
bool is_const_token(Type);
const TypeSet& const_tokens();
bool token_has_value(Type);
std::string type_to_string(Type);
Type type_from_string(const std::string&);
std::ostream& operator<<(std::ostream&, const Type&);
}
|