From 55f4c327643b5a9c423e0164d86e2e7e1c83e76f Mon Sep 17 00:00:00 2001 From: Garritt McCune Date: Sun, 2 Oct 2022 22:12:16 -0500 Subject: [PATCH] Missed this for the Scanner fix. --- includes/token.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/token.h b/includes/token.h index f26e2d3..52a94c0 100644 --- a/includes/token.h +++ b/includes/token.h @@ -23,7 +23,8 @@ typedef enum { typedef enum { DB, - Origin + Origin, + Byte } Directive; typedef enum { @@ -42,6 +43,7 @@ typedef struct { char* Lemexe; TokenClass Class; int LineNumber; + int EndOfFile; union { TokenPunctuation Punctuation;