mirror of
https://github.com/anoma/juvix.git
synced 2024-12-03 09:41:10 +03:00
c95fcb38c8
* Implements a translation from JuvixAsm to JuvixTree. It does not work in general, but works for all code generated from Juvix and all JuvixAsm tests. * Adds the `juvix dev tree from-asm` command. * Adds tests automatically converted from JuvixAsm tests. * Depends on #2583
8 lines
140 B
Haskell
8 lines
140 B
Haskell
module Tree where
|
|
|
|
import Base
|
|
import Tree.Asm qualified as Asm
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixTree tests" [Asm.allTests]
|