mirror of
https://github.com/github/semantic.git
synced 2024-12-18 04:11:48 +03:00
Stub in interpretation.
This commit is contained in:
parent
3829f4492d
commit
7c09fd1503
@ -1 +1,16 @@
|
||||
module Interpreter where
|
||||
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user