mirror of
https://github.com/anoma/juvix.git
synced 2024-12-18 20:31:51 +03:00
9 lines
226 B
Haskell
9 lines
226 B
Haskell
|
module Nockma.Compile where
|
||
|
|
||
|
import Base
|
||
|
import Nockma.Compile.Asm.Positive qualified as Asm
|
||
|
import Nockma.Compile.Positive qualified as P
|
||
|
|
||
|
allTests :: TestTree
|
||
|
allTests = testGroup "Nockma compile" [P.allTests, Asm.allTests]
|