1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 18:06:14 +03:00

Stub in a Line type.

This commit is contained in:
Rob Rix 2015-12-18 08:04:40 -05:00
parent c3a292b833
commit 5f21e35a3b

View File

@ -5,5 +5,7 @@ import Diff
patch :: Diff a Info -> String -> String -> String
patch diff sourceA sourceB = mconcat $ hunks diff sourceA sourceB
data Line = Insert String | Delete String | Context String
hunks :: Diff a Info -> String -> String -> [String]
hunks diff sourceA sourceB = []