Add additional assignment operators (#7102)

This commit is contained in:
JT
2022-11-12 07:50:43 +13:00
committed by GitHub
parent 69b089845c
commit c1105e945e
6 changed files with 84 additions and 4 deletions

View File

@ -55,7 +55,7 @@ impl Expression {
Operator::Bits(Bits::BitOr) => 60,
Operator::Boolean(Boolean::And) => 50,
Operator::Boolean(Boolean::Or) => 40,
Operator::Assignment(Assignment::Assign) => 10,
Operator::Assignment(_) => 10,
}
}
_ => 0,