mirror of
https://github.com/anoma/juvix.git
synced 2024-12-19 04:41:36 +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
167 B
Haskell
8 lines
167 B
Haskell
module Tree.Asm where
|
|
|
|
import Base
|
|
import Tree.Asm.Positive qualified as P
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixTree to JuvixAsm translation" [P.allTests]
|