aboutsummaryrefslogtreecommitdiff
path: root/src/TokenTypes.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-08-14 18:28:10 +0200
committerMarvin Borner2019-08-14 18:28:10 +0200
commit38aad3dcda01fc5ed82556dbfdf4cfc30ff479d9 (patch)
treec38ac3df2f68e820f408c03468c43433e98f4be6 /src/TokenTypes.kt
parentd9d9fbdd9d13a5eadc5c57ac19405983cfe11b2e (diff)
Began syntactical analysis
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