Improve code quality

This commit is contained in:
Neemek 2025-03-16 21:16:12 +01:00
parent 5edad332cd
commit 3f260e7ffd
Signed by: neemek
GPG key ID: 28360A8951CD0E9B
11 changed files with 95 additions and 45 deletions

View file

@ -193,7 +193,7 @@ func (l *Lexer) NextToken() (Token, error) {
l.start = l.current
var c = []rune(l.src)[l.current]
var c = l.src[l.current]
l.advance()
switch c {