mirror of
https://github.com/anoma/juvix.git
synced 2024-12-27 09:32:18 +03:00
15c223d0f1
* Adds the `FilterUnreachable` transformation in JuvixTree. * Depends on #2596 * Depends on #2595 * Depends on #2594 * Depends on #2590 * Depends on #2589 * Depends on #2587
16 lines
380 B
Haskell
16 lines
380 B
Haskell
module Tree.Transformation where
|
|
|
|
import Base
|
|
import Tree.Transformation.Apply qualified as Apply
|
|
import Tree.Transformation.Identity qualified as Identity
|
|
import Tree.Transformation.Reachability qualified as Reachability
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"JuvixTree transformations"
|
|
[ Identity.allTests,
|
|
Apply.allTests,
|
|
Reachability.allTests
|
|
]
|