{-# LANGUAGE BlockArguments #-} {-# LANGUAGE ImportQualifiedPost #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE ViewPatterns #-} module Dovetail.Core.Partial where import Data.Text (Text) import Dovetail import Dovetail.Evaluate (builtIn) env :: forall ctx. Env ctx env :: Env ctx env = do let _ModuleName :: ModuleName _ModuleName = Text -> ModuleName ModuleName Text "Partial" ModuleName -> Text -> (Text -> Eval ctx (Value ctx)) -> Env ctx forall ctx a. ToValue ctx a => ModuleName -> Text -> a -> Env ctx builtIn @ctx @(Text -> Eval ctx (Value ctx)) ModuleName _ModuleName Text "_crashWith" \Text message -> EvaluationErrorType ctx -> Eval ctx (Value ctx) forall x (m :: * -> *) a. (MonadError (EvaluationError x) m, MonadReader (EvaluationContext x) m) => EvaluationErrorType x -> m a throwErrorWithContext (Text -> EvaluationErrorType ctx forall ctx. Text -> EvaluationErrorType ctx OtherError Text message)