mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 04:43:18 +03:00
a5bfba6c1c
* Generalizes JuvixCore map and fold recursors to work also for JuvixTree. * Adds a transformation framework to JuvixTree. * Adds identity trasformation tests for JuvixTree. * Depends on #2590 * Depends on #2589 * Depends on #2587
10 lines
270 B
Haskell
10 lines
270 B
Haskell
module Tree where
|
|
|
|
import Base
|
|
import Tree.Asm qualified as Asm
|
|
import Tree.Eval qualified as Eval
|
|
import Tree.Transformation qualified as Transformation
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixTree tests" [Eval.allTests, Asm.allTests, Transformation.allTests]
|