1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Stub in a TermEvaluator newtype wrapping Evaluator.

This commit is contained in:
Rob Rix 2018-05-15 11:40:28 -04:00
parent 70c28fa288
commit 8c82e1f4a2

View File

@ -1 +1,7 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Control.Abstract.TermEvaluator where
import Control.Abstract.Evaluator
newtype TermEvaluator term location value effects a = TermEvaluator { runTermEvaluator :: Evaluator location value effects a }
deriving (Applicative, Effectful, Functor, Monad)