1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 14:54:16 +03:00
semantic/src/Renderer.hs
2016-02-28 21:10:56 -05:00

9 lines
202 B
Haskell

module Renderer where
import Data.Bifunctor.Join
import Diff
import Source
-- | A function that will render a diff, given the two source files.
type Renderer a b = Diff a Info -> Join SourceBlob -> b