mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
9 lines
202 B
Haskell
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
|