mirror of
https://github.com/anoma/juvix.git
synced 2025-01-05 22:46:08 +03:00
0f713c7c84
* Closes #2562 Checklist --------- - [x] Translation from JuvixReg to CASM - [x] CASM runtime - [x] Juvix to CASM pipeline: combine the right transformations and check prerequisites - [x] CLI commands: add target `casm` to the `compile` commands - [x] Tests: - [x] Test the translation from JuvixReg to CASM - [x] Test the entire pipeline from Juvix to CASM
10 lines
245 B
Haskell
10 lines
245 B
Haskell
module Casm where
|
|
|
|
import Base
|
|
import Casm.Compilation qualified as Compile
|
|
import Casm.Reg qualified as Reg
|
|
import Casm.Run qualified as Run
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "CASM tests" [Run.allTests, Reg.allTests, Compile.allTests]
|