mirror of
https://github.com/github/semantic.git
synced 2024-12-23 06:41:45 +03:00
8 lines
174 B
Haskell
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)
|