Fix: Token#opEquals(TokenType) never returns false
opEquals(TokenType) never returns false because its argument shadows the corresponding field.
This commit is contained in:
parent
aa406c76f2
commit
ec57809ec9
|
@ -174,7 +174,7 @@ struct Token
|
|||
/**
|
||||
* Checks to see if the token is of the given type.
|
||||
*/
|
||||
bool opEquals(TokenType type) const { return type == type; }
|
||||
bool opEquals(TokenType type) const { return this.type == type; }
|
||||
|
||||
/**
|
||||
* Comparison operator orders tokens by start index.
|
||||
|
|
Loading…
Reference in New Issue