Fix '&' being parsed as '='

This commit is contained in:
0x4261756D 2024-02-21 15:07:06 +01:00
parent 424f381755
commit eaba371455

View File

@ -211,7 +211,7 @@ class Tokenizer
{
lastIndex = index;
state = State.Ampersand;
currentToken = new(region: new(start: new(currentLocation), end: new(currentLocation)), type: TokenType.Equals);
currentToken = new(region: new(start: new(currentLocation), end: new(currentLocation)), type: TokenType.Ampersand);
} /* tokenizeTerminalBase(TokenType.Ampersand, TokenizerState.Ampersand); */
break;
case '%':