1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-27 01:23:32 +03:00
juvix/test/Reg.hs
Łukasz Czajka 86e8458b9f
JuvixReg recursors (#2641)
* 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
2024-02-19 08:58:19 +00:00

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]