1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 14:21:31 +03:00

Add Eval back to Evaluating

This commit is contained in:
joshvera 2018-02-21 18:12:19 -05:00
parent e364b6f3ae
commit baed0e3d82

View File

@ -25,10 +25,10 @@ import System.FilePath.Posix
-- | The effects necessary for concrete interpretation.
type Evaluating term v
= '[ Fail -- For 'MonadFail'.
, Store2 v -- For 'MonadStore'.
= '[ Fail -- For 'MonadFail'.
, State (Store (LocationFor v) v) -- For 'MonadStore'.
, State (Environment (LocationFor v) v) -- Environment State
-- , Eval (Base term) term
, Eval (Base term) term
]
-- | Evaluate a term to a value.