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

17 lines
335 B
Haskell
Raw Normal View History

2015-11-18 03:25:39 +03:00
module Interpreter where
2015-11-18 04:05:16 +03:00
import Algorithm
import Control.Monad.Free
import Control.Comonad.Cofree
import Operation
import Diff
recur :: Term a Info -> Term a Info -> Maybe (Diff a)
recur a b =
run algorithm where
algorithm = Free $ Recursive a b Pure
run :: Algorithm a (Diff a) -> Maybe (Diff a)
run (Pure diff) = Just diff