Beginnings of a working compiler.

This commit is contained in:
2025-04-27 22:53:48 -07:00
parent ba08245e02
commit 0fc10f4c76
21 changed files with 1239 additions and 71 deletions

View File

@@ -7,9 +7,11 @@ enum class TokenT : ehs::UInt_8
UNKNOWN,
VALUE,
KEYWORD,
TYPE,
IDENTIFIER,
UNARY_OPERATOR,
COMPOUND_OPERATOR
COMPOUND_OPERATOR,
EOL
};
class EHS_LIB_IO Token