1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-26 00:53:23 +03:00
juvix/test/Tree/Eval.hs
Łukasz Czajka 0073d04f89
JuvixTree evaluator (#2589)
* Implements JuvixTree evaluator
* Adds JuvixTree evaluation tests
* Adds the `juvix dev tree eval` command
* Depends on #2587 
* Depends on #2583
2024-01-25 19:11:45 +00:00

8 lines
156 B
Haskell

module Tree.Eval where
import Base
import Tree.Eval.Positive qualified as P
allTests :: TestTree
allTests = testGroup "JuvixTree evaluation" [P.allTests]