Fixed power associativity

pull/2/head
Mark 2023-03-26 12:15:36 -07:00
parent 47e8a021f9
commit ca35c8d9e9
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 0 additions and 1 deletions

View File

@ -256,7 +256,6 @@ impl Operator {
pub fn is_left_associative(&self) -> bool {
match self {
Operator::Negative
| Operator::Power
=> false,
_ => true
}