mirror of
https://github.com/github/semantic.git
synced 2024-12-21 13:51:44 +03:00
Simplify toJSONSummaries.
This commit is contained in:
parent
28d858ce32
commit
c369867230
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user