mirror of
https://github.com/anoma/juvix.git
synced 2024-12-13 11:16:48 +03:00
5d4cb904e8
The new `juvix dev repl` command is a copy of the `juvix repl` with the addition of `--no-disambiguate` flag that is present on the `juvix dev core from-concrete` command. The `juvix repl` command now does not have the `--transforms`, `--show-de-bruijn` flags as these are only relevant for compiler developers. The eval transforms are always applied. By default `juvix dev repl` uses the eval transforms. You can override this by specifying the `-t` flag. Also we now run `disambiguateNames` transform on the info table in the `dev repl` (unless the `--no-disambiguate-names` flag is set). This is so the output of the `juvix dev repl` will match that of `juvix dev core from-concrete` and also so the output can be parsed by back the core parser. * Closes https://github.com/anoma/juvix/issues/1914
34 lines
1.2 KiB
Haskell
34 lines
1.2 KiB
Haskell
module Commands.Dev
|
|
( module Commands.Dev,
|
|
module Commands.Dev.Options,
|
|
)
|
|
where
|
|
|
|
import Commands.Base
|
|
import Commands.Dev.Asm qualified as Asm
|
|
import Commands.Dev.Core qualified as Core
|
|
import Commands.Dev.DisplayRoot qualified as DisplayRoot
|
|
import Commands.Dev.Geb qualified as Geb
|
|
import Commands.Dev.Highlight qualified as Highlight
|
|
import Commands.Dev.Internal qualified as Internal
|
|
import Commands.Dev.Options
|
|
import Commands.Dev.Parse qualified as Parse
|
|
import Commands.Dev.Runtime qualified as Runtime
|
|
import Commands.Dev.Scope qualified as Scope
|
|
import Commands.Dev.Termination qualified as Termination
|
|
import Commands.Repl qualified as Repl
|
|
|
|
runCommand :: (Members '[Embed IO, App] r) => DevCommand -> Sem r ()
|
|
runCommand = \case
|
|
Highlight opts -> Highlight.runCommand opts
|
|
Parse opts -> Parse.runCommand opts
|
|
Scope opts -> Scope.runCommand opts
|
|
Internal opts -> Internal.runCommand opts
|
|
Termination opts -> Termination.runCommand opts
|
|
Core opts -> Core.runCommand opts
|
|
Geb opts -> Geb.runCommand opts
|
|
Asm opts -> Asm.runCommand opts
|
|
Runtime opts -> Runtime.runCommand opts
|
|
DisplayRoot opts -> DisplayRoot.runCommand opts
|
|
JuvixDevRepl opts -> Repl.runCommand opts
|