Remove HashableExpr abstraction (#14057)

## Summary

It looks like `ComparableExpr` now implements `Hash` so we can just
remove this.
This commit is contained in:
Charlie Marsh 2024-11-02 16:28:35 -04:00 committed by GitHub
parent 35c6dfe481
commit 4a3eeeff86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 53 deletions

View file

@ -9,7 +9,6 @@ pub use nodes::*;
pub mod comparable;
pub mod docstrings;
mod expression;
pub mod hashable;
pub mod helpers;
pub mod identifier;
mod int;