1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 12:51:52 +03:00

Define an EvaluateModule exception/request type.

This commit is contained in:
Rob Rix 2018-03-22 19:24:19 -04:00
parent 0acd79da04
commit 31c433fe02

View File

@ -158,3 +158,6 @@ class Monad m => MonadControl term m where
class Monad m => MonadThrow exc v m where class Monad m => MonadThrow exc v m where
throwException :: exc -> m v throwException :: exc -> m v
newtype EvaluateModule term = EvaluateModule (Module term)
deriving (Eq, Foldable, Functor, Ord, Show, Traversable)