Add: State to use RawToken

This commit is contained in:
Lars Simon Winzer
2026-03-15 12:11:59 +01:00
parent 45fd696fec
commit 3e138ab84e
@@ -9,7 +9,7 @@ class State {
int pos;
int line;
int column;
final List<Token> tokens;
final List<RawToken> tokens;
State(String input) {
this.input = input;