mirror of
https://github.com/anoma/juvix.git
synced 2024-12-13 19:49:20 +03:00
445376e338
* nat to int wip * nat to int wip * fix condition * nats in core * bugfixes * tests * make ormolu happy * fix case
18 lines
469 B
Haskell
18 lines
469 B
Haskell
module Core.Transformation where
|
|
|
|
import Base
|
|
import Core.Transformation.Identity qualified as Identity
|
|
import Core.Transformation.Lifting qualified as Lifting
|
|
import Core.Transformation.Pipeline qualified as Pipeline
|
|
import Core.Transformation.TopEtaExpand qualified as TopEtaExpand
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"JuvixCore transformations"
|
|
[ Identity.allTests,
|
|
TopEtaExpand.allTests,
|
|
Lifting.allTests,
|
|
Pipeline.allTests
|
|
]
|