fix: never type with binding
Change-Id: I14e1bc628b9d2dfdb1f40de3d3707f4e872767f2
This commit is contained in:
@@ -272,7 +272,7 @@ impl<'t> Parser<'t> {
|
||||
T![=] if jn1 && la2 == T![=] => Some((T![==], 2)),
|
||||
T![=] if jn1 && la2 == T![>] => Some((T![=>], 2)),
|
||||
|
||||
T![!] if la2 == T![=] => Some((T![!=], 2)),
|
||||
T![!] if jn1 && la2 == T![=] => Some((T![!=], 2)),
|
||||
T![-] if la2 == T![>] => Some((T![->], 2)),
|
||||
_ => None,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user