diff options
Diffstat (limited to 'app/Text/Diff')
-rw-r--r-- | app/Text/Diff/Extra.hs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/Text/Diff/Extra.hs b/app/Text/Diff/Extra.hs new file mode 100644 index 0000000..f558495 --- /dev/null +++ b/app/Text/Diff/Extra.hs @@ -0,0 +1,30 @@ +{-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -fno-warn-orphans #-} + +module Text.Diff.Extra where + +import Data.Binary (Binary) +import Generics.Deriving.TH (deriveAll0) +import Text.Diff.Parse.Types + +deriveAll0 ''FileDelta +deriveAll0 ''FileStatus +deriveAll0 ''Content +deriveAll0 ''Hunk +deriveAll0 ''Range +deriveAll0 ''Line +deriveAll0 ''Annotation + +instance Binary FileDelta + +instance Binary FileStatus + +instance Binary Content + +instance Binary Hunk + +instance Binary Range + +instance Binary Line + +instance Binary Annotation |