mirror of
https://github.com/anoma/juvix.git
synced 2025-01-05 22:46:08 +03:00
13 lines
560 B
Haskell
13 lines
560 B
Haskell
|
module Commands.Dev.Internal.Reachability where
|
||
|
|
||
|
import Commands.Base
|
||
|
import Commands.Dev.Internal.Reachability.Options
|
||
|
import Juvix.Compiler.Internal.Pretty qualified as Internal
|
||
|
import Juvix.Compiler.Internal.Translation.FromConcrete qualified as Internal
|
||
|
|
||
|
runCommand :: (Members '[Embed IO, App] r) => InternalReachabilityOptions -> Sem r ()
|
||
|
runCommand opts = do
|
||
|
globalOpts <- askGlobalOptions
|
||
|
depInfo <- (^. Internal.resultDepInfo) <$> runPipeline (opts ^. internalReachabilityInputFile) upToInternal
|
||
|
renderStdOut (Internal.ppOut globalOpts depInfo)
|