mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 10:47:32 +03:00
56e2db7336
Recent changes to the compiler left JuvixTree parsing and pretty printing not in sync with each other.
11 lines
323 B
Haskell
11 lines
323 B
Haskell
module Tree where
|
|
|
|
import Base
|
|
import Tree.Asm qualified as Asm
|
|
import Tree.Eval qualified as Eval
|
|
import Tree.Parse qualified as Parse
|
|
import Tree.Transformation qualified as Transformation
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixTree tests" [Parse.allTests, Eval.allTests, Asm.allTests, Transformation.allTests]
|