Added basic lexer

This commit is contained in:
Pasha Bibko
2025-07-20 16:15:58 +01:00
parent f5bb46788c
commit 903b4da7df
4 changed files with 103 additions and 39 deletions

View File

@@ -11,10 +11,10 @@ namespace LXC::Lexer
// Trackers for the Lexer itself //
const std::string& source;
size_t index;
__int32 index;
LexerOutput out;
const size_t len;
const __int32 len;
// Trackers for where the Lexer is within the user version of source //
unsigned short column;