Files
LXC/Lexer/inc/Lexer.h
2025-07-19 23:02:16 +01:00

18 lines
286 B
C++

#pragma once
#include <Token.h>
namespace LXC::Lexer
{
struct LexerContext
{
// Trackers for the Lexer itself //
std::string source;
size_t index;
// Trackers for where the Lexer is within the user version of source //
unsigned short column;
unsigned short line;
};
}