aboutsummaryrefslogtreecommitdiff
path: root/include/lexer/token_type.h
blob: f83c6d61d210b45662c900c1ebdc1bf2d885444e (plain)
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
#ifndef TOKEN_TYPE_H
#define TOKEN_TYPE_H

enum class TokenType {
    INT,
    STRING,

    NUMBER,
    IDENTIFIER,

    PLUS,
    MINUS,
    MULTIPLY,
    DIVIDE,

    ASSIGN,

    SEMICOLON,

    END_OF_FILE,
    INVALID

};

#endif