1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 06:41:45 +03:00
semantic/src/Algorithm.hs
2016-05-04 14:37:24 -04:00

8 lines
174 B
Haskell

module Algorithm where
import Control.Monad.Trans.Free
import Operation
-- | A lazily-produced AST for diffing.
type Algorithm a annotation = Free (Operation a annotation)