priority expression

This commit is contained in:
2024-11-21 22:23:31 -07:00
parent c9fc59a034
commit febb4e9d55
3 changed files with 42 additions and 12 deletions

View File

@@ -148,13 +148,6 @@ impl Symbol {
_ => false,
}
}
pub fn is_assignment(&self) -> bool {
match self {
Symbol::Assign => true,
_ => false,
}
}
}
#[derive(Debug, PartialEq, Hash, Eq, Clone, Copy)]