mirror of
https://github.com/anoma/juvix.git
synced 2024-12-26 17:13:35 +03:00
86e8458b9f
* Implements JuvixReg recursors, which will allow to implement JuvixReg transformations more succinctly and effectively. * Adds a transformation framework to JuvixReg. * Adds identity transformation tests. * Depends on #2635
10 lines
268 B
Haskell
10 lines
268 B
Haskell
module Reg where
|
|
|
|
import Base
|
|
import Reg.Parse qualified as Parse
|
|
import Reg.Run qualified as Run
|
|
import Reg.Transformation qualified as Transformation
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixReg tests" [Parse.allTests, Run.allTests, Transformation.allTests]
|