mirror of
https://github.com/anoma/juvix.git
synced 2024-12-11 08:25:46 +03:00
3c3e442c81
* Adds end-to-end tests for compiling Juvix to Geb * Fixes bugs in the Core-to-Geb translation (`<=` and `let`) * Fixes a bug in the Geb evaluator (equality on integers)
11 lines
190 B
Haskell
11 lines
190 B
Haskell
module BackendGeb.Compilation where
|
|
|
|
import BackendGeb.Compilation.Positive qualified as P
|
|
import Base
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"Compilation to Geb"
|
|
[P.allTests]
|