summaryrefslogtreecommitdiff
path: root/src/Lexer
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2025-01-02 19:27:26 +0100
committerDaniel Weipert <git@mail.dweipert.de>2025-01-02 19:27:26 +0100
commitba1bcfa811fe8eab5a2c71ef4a360e8b846ae32b (patch)
tree0aa5008d20c428cdbbe4f596570213573f3a57e9 /src/Lexer
parent64f56807a090a2d3e7a565caf63cfd0e265b41ca (diff)
intermediate parser commit 2
Diffstat (limited to 'src/Lexer')
-rw-r--r--src/Lexer/Lexer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Lexer/Lexer.php b/src/Lexer/Lexer.php
index fba9623..bb2a809 100644
--- a/src/Lexer/Lexer.php
+++ b/src/Lexer/Lexer.php
@@ -475,8 +475,8 @@ class Token {
public TokenType $type,
public string $literal,
public string $value,
- public string $line,
- public string $column,
+ public int $line,
+ public int $column,
) {}
}