aboutsummaryrefslogtreecommitdiff
path: root/src/runMain/kotlin/TokenType.kt
blob: f784cbb7299801b7c2ce8187a03f7e110d7025c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * Defines the token types which are used by the lexical analyser to classify tokens
 */
enum class TokenType {
    Keyword,
    Function,
    Assignment,
    Arithmetic,
    Comparison,
    Logical,
    Variable,
    Constant,
    Punctuation,
    StatementEnd,
    OpenedBracket,
    ClosedBracket,
    Classifier,
    Empty,
    Skip
}