parity with old implementation

This commit is contained in:
Folkert 2020-03-16 16:19:44 +01:00
parent d875f8bfce
commit e742b77e0b
6 changed files with 345 additions and 303 deletions

View file

@ -10,11 +10,12 @@
// and encouraging shortcuts here creates bad incentives. I would rather temporarily
// re-enable this when working on performance optimizations than have it block PRs.
#![allow(clippy::large_enum_variant)]
pub mod decision_tree;
pub mod expr;
pub mod layout;
// Temporary, while we can build up test cases and optimize the exhaustiveness checking.
// For now, following this warning's advice will lead to nasty type inference errors.
#[allow(clippy::ptr_arg)]
pub mod decision_tree;
#[allow(clippy::ptr_arg)]
pub mod pattern;