1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-27 09:32:18 +03:00
juvix/test/Tree/Transformation.hs
Łukasz Czajka 15c223d0f1
Filter out unreachable functions in JuvixTree (#2597)
* Adds the `FilterUnreachable` transformation in JuvixTree.
* Depends on #2596 
* Depends on #2595 
* Depends on #2594 
* Depends on #2590 
* Depends on #2589 
* Depends on #2587
2024-01-30 20:01:07 +00:00

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
]