diff options
Diffstat (limited to 'src/Lexer')
-rw-r--r-- | src/Lexer/Lexer.php | 4 |
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, ) {} } |