mirror of
https://github.com/anoma/juvix.git
synced 2024-12-20 21:31:48 +03:00
21 lines
979 B
Haskell
21 lines
979 B
Haskell
|
module Commands.Dev.Core.Strip where
|
||
|
|
||
|
import Commands.Base
|
||
|
import Commands.Dev.Core.Strip.Options
|
||
|
import Juvix.Compiler.Core.Pipeline qualified as Core
|
||
|
import Juvix.Compiler.Core.Pretty qualified as Core
|
||
|
import Juvix.Compiler.Core.Translation.FromSource qualified as Core
|
||
|
import Juvix.Compiler.Core.Translation.Stripped.FromCore qualified as Stripped
|
||
|
|
||
|
runCommand :: forall r a. (Members '[Embed IO, App] r, CanonicalProjection a Core.Options, CanonicalProjection a CoreStripOptions) => a -> Sem r ()
|
||
|
runCommand opts = do
|
||
|
inputFile :: Path Abs File <- someBaseToAbs' sinputFile
|
||
|
s' <- embed (readFile $ toFilePath inputFile)
|
||
|
(tab, _) <- getRight (mapLeft JuvixError (Core.runParser (toFilePath inputFile) Core.emptyInfoTable s'))
|
||
|
let tab' = Stripped.fromCore (Core.toStripped tab)
|
||
|
unless (project opts ^. coreStripNoPrint) $ do
|
||
|
renderStdOut (Core.ppOut opts tab')
|
||
|
where
|
||
|
sinputFile :: SomeBase File
|
||
|
sinputFile = project opts ^. coreStripInputFile . pathPath
|