aboutsummaryrefslogtreecommitdiff
path: root/src/TokenTypes.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/TokenTypes.kt')
-rw-r--r--src/TokenTypes.kt14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/TokenTypes.kt b/src/TokenTypes.kt
new file mode 100644
index 0000000..9e15b5a
--- /dev/null
+++ b/src/TokenTypes.kt
@@ -0,0 +1,14 @@
+enum class TokenType {
+ Keyword,
+ Assignment,
+ Arithmetic,
+ Comparison,
+ Logical,
+ Identifier,
+ Constant,
+ Punctuation,
+ Bracket,
+ Classifier,
+ Empty,
+ Skip
+} \ No newline at end of file