1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 13:51:44 +03:00

Simplify toJSONSummaries.

This commit is contained in:
Rob Rix 2017-05-08 17:16:48 -04:00
parent 28d858ce32
commit c369867230

View File

@ -129,11 +129,9 @@ diffTOC blobs diff = removeDupes (diffToTOCSummaries (source <$> blobs) diff) >>
isSummarizable _ = False
toJSONSummaries :: TOCSummary DiffInfo -> [JSONSummary]
toJSONSummaries TOCSummary{..} = toJSONSummaries' (afterOrBefore summaryPatch)
where
toJSONSummaries' diffInfo = case diffInfo of
ErrorInfo{..} -> [ErrorSummary termName infoSpan]
LeafInfo{..} -> maybe [] (pure . JSONSummary) parentInfo
toJSONSummaries TOCSummary{..} = case afterOrBefore summaryPatch of
ErrorInfo{..} -> [ErrorSummary termName infoSpan]
LeafInfo{..} -> maybe [] (pure . JSONSummary) parentInfo
toTermName :: HasDefaultFields fields => Source -> Term (Syntax Text) (Record fields) -> Text
toTermName source = para $ \ (annotation :< syntax) -> case syntax of