mirror of
https://github.com/github/semantic.git
synced 2024-12-22 22:31:36 +03:00
Simplify the selection of patches.
This commit is contained in:
parent
d678048dfd
commit
e5d345dca7
@ -157,7 +157,7 @@ tableOfContentsBy selector = fromMaybe [] . evalDiff diffAlgebra
|
||||
(Just a, Just []) -> Just [Changed a]
|
||||
(_ , entries) -> entries
|
||||
Var v -> join (envLookup v env)
|
||||
Patch patch -> foldMap (\ t -> maybe (fold t) (Just . pure . patchEntry patch) (selector t)) patch
|
||||
Patch patch -> foldMap (\ t -> fold t <> (pure . patchEntry patch <$> selector t)) patch
|
||||
|
||||
patchEntry = these (const Deleted) (const Inserted) (const (const Replaced)) . unPatch
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user