1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-16 02:22:25 +03:00
juvix/app/Commands/Dev/Internal.hs

16 lines
604 B
Haskell
Raw Normal View History

module Commands.Dev.Internal where
2022-09-14 17:16:15 +03:00
import Commands.Base
import Commands.Dev.Internal.Arity qualified as Arity
import Commands.Dev.Internal.Options
import Commands.Dev.Internal.Pretty qualified as Pretty
import Commands.Dev.Internal.Reachability qualified as Reachability
import Commands.Dev.Internal.Typecheck qualified as Typecheck
2022-09-14 17:16:15 +03:00
runCommand :: (Members '[Embed IO, App] r) => InternalCommand -> Sem r ()
2022-09-14 17:16:15 +03:00
runCommand = \case
Pretty opts -> Pretty.runCommand opts
2022-09-14 17:16:15 +03:00
Arity opts -> Arity.runCommand opts
TypeCheck opts -> Typecheck.runCommand opts
Reachability opts -> Reachability.runCommand opts