hint-0.5.0: src/Hint/Typecheck.hs
module Hint.Typecheck (
typeOf, typeChecks, kindOf,
) where
import Control.Monad.Catch
import Hint.Base
import Hint.Parsers
import Hint.Conversions
import qualified Hint.Compat as Compat
-- | Returns a string representation of the type of the expression.
typeOf :: MonadInterpreter m => String -> m String
typeOf expr =
do -- First, make sure the expression has no syntax errors,
-- for this is the only way we have to "intercept" this
-- kind of errors
failOnParseError parseExpr expr
--
ty <- mayFail $ runGhc1 Compat.exprType expr
--
typeToString ty
-- | Tests if the expression type checks.
typeChecks :: MonadInterpreter m => String -> m Bool
typeChecks expr = (typeOf expr >> return True)
`catchIE`
onCompilationError (\_ -> return False)
-- | Returns a string representation of the kind of the type expression.
kindOf :: MonadInterpreter m => String -> m String
kindOf type_expr =
do -- First, make sure the expression has no syntax errors,
-- for this is the only way we have to "intercept" this
-- kind of errors
failOnParseError parseType type_expr
--
kind <- mayFail $ runGhc1 Compat.typeKind type_expr
--
kindToString (Compat.Kind kind)
onCompilationError :: MonadInterpreter m
=> ([GhcError] -> m a)
-> (InterpreterError -> m a)
onCompilationError recover interp_error
= case interp_error of
WontCompile errs -> recover errs
otherErr -> throwM otherErr