mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
ed15e57d8a
* Closes #2578 * Implements JuvixReg parser and pretty printer. * Adds the `juvix dev reg read file.jvr` command. * Adds the `reg` target to the `compile` commands. * Adds tests for the JuvixReg parser.
8 lines
152 B
Haskell
8 lines
152 B
Haskell
module Reg.Parse where
|
|
|
|
import Base
|
|
import Reg.Parse.Positive qualified as P
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "JuvixReg parsing" [P.allTests]
|