aboutsummaryrefslogtreecommitdiff
path: root/include/tokenizer.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-03-02 22:40:34 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commitd640066d9390e3ba1abca183db9263b775c000d4 (patch)
tree4389abf1244ab930a225e4c33b2b5071d4d0d70f /include/tokenizer.h
parentaf74ddb119e3c5167a10bf5468af3960c8db42c0 (diff)
Readd requirement for semicolon, makes things much simpler (for user as well)
Diffstat (limited to 'include/tokenizer.h')
-rw-r--r--include/tokenizer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/tokenizer.h b/include/tokenizer.h
index 6f00704..c58917f 100644
--- a/include/tokenizer.h
+++ b/include/tokenizer.h
@@ -25,7 +25,8 @@ typedef enum {
TOK_CLOSING_BRACE,
TOK_IMPORT,
TOK_NUMBER,
- TOK_DOT
+ TOK_DOT,
+ TOK_SEMICOLON
} Token;
typedef struct {