1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 15:35:14 +03:00

Stub in an AppMerge semigroup.

This commit is contained in:
Rob Rix 2018-03-21 16:40:56 -04:00
parent 3315096629
commit 0b2b27ff21
2 changed files with 8 additions and 0 deletions

View File

@ -72,6 +72,7 @@ library
, Data.Patch
, Data.Range
, Data.Record
, Data.Semigroup.App
, Data.Source
, Data.Span
, Data.SplitDiff

View File

@ -0,0 +1,7 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Data.Semigroup.App where
import Control.Applicative
newtype AppMerge f a = AppMerge { runAppMerge :: f a }
deriving (Alternative, Applicative, Bounded, Enum, Eq, Foldable, Functor, Monad, Ord, Show, Traversable)