mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
Revert "Explicitly preserve Closedness on both sides under mappend."
This reverts commit bd4094153350b67d383edffd1f22fbd97de81774.
This commit is contained in:
parent
718b905375
commit
970a3b24d3
@ -54,8 +54,7 @@ instance Applicative Line where
|
|||||||
|
|
||||||
instance Monoid (Line a) where
|
instance Monoid (Line a) where
|
||||||
mempty = Line []
|
mempty = Line []
|
||||||
mappend xs ys | isOpen xs && isOpen ys = Line (unLine xs `mappend` unLine ys)
|
mappend xs ys = lineMap (mappend (unLine xs)) ys
|
||||||
| otherwise = Closed (unLine xs `mappend` unLine ys)
|
|
||||||
|
|
||||||
instance Coalescent (Line a) where
|
instance Coalescent (Line a) where
|
||||||
coalesce a b | isOpen a = pure (a `mappend` b)
|
coalesce a b | isOpen a = pure (a `mappend` b)
|
||||||
|
Loading…
Reference in New Issue
Block a user