1
1
mirror of https://github.com/github/semantic.git synced 2024-12-11 08:45:48 +03:00

Factor out the tuple.

This commit is contained in:
Rob Rix 2019-10-16 17:40:57 -04:00
parent bfec2ffa45
commit 50638e0205
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

View File

@ -105,10 +105,10 @@ dedupe = map snd . sortOn fst . Map.elems . snd . foldl' go (0, Map.empty)
-> (Int, Map.Map DedupeKey (Int, (Entry, Declaration)))
go (index, m) x
| Just (_, (_, similarDecl)) <- Map.lookup (dedupeKey (snd x)) m
= if similarDecl == snd x then
(succ index, m)
= (succ index,) $ if similarDecl == snd x then
m
else
(succ index, Map.insert (dedupeKey similarDecl) (index, (Replaced, similarDecl)) m)
Map.insert (dedupeKey similarDecl) (index, (Replaced, similarDecl)) m
| otherwise = (succ index, Map.insert (dedupeKey (snd x)) (index, x) m)
dedupeKey decl = DedupeKey (toCategoryName decl, T.toLower (declarationIdentifier decl))