mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 04:43:18 +03:00
1153f6b338
* Moves the "apply" transformation from JuivxAsm to JuvixTree. This transformation removes the `CallClosures` nodes. * Makes Nockma compilation tests use JuvixTree instead of JuvixAsm files. * Depends on #2594 * Depends on #2590 * Depends on #2589 * Depends on #2587
9 lines
280 B
Haskell
9 lines
280 B
Haskell
module Asm.Transformation where
|
|
|
|
import Asm.Transformation.Prealloc qualified as Prealloc
|
|
import Asm.Transformation.Reachability qualified as Reachability
|
|
import Base
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixAsm transformations" [Prealloc.allTests, Reachability.allTests]
|