mirror of
https://github.com/github/semantic.git
synced 2024-12-27 00:44:57 +03:00
Extract a function to compute the head ranges of a pair of lists of ranges.
This commit is contained in:
parent
8313074e50
commit
281b65e70a
@ -156,13 +156,16 @@ alignBranch getRange children ranges = case intersectingChildren of
|
||||
where (intersectingChildren, nonIntersectingChildren) = partition (or . intersectsFirstLine headRanges) children
|
||||
(remainingIntersectingChildren, asymmetricalChildren) = partition (isThese . runJoin . head . copoint) intersectingChildren
|
||||
intersectsFirstLine ranges = maybe (False <$ ranges) (intersects getRange ranges) . listToMaybe . copoint
|
||||
Just headRanges = sequenceL $ listToMaybe <$> Join (runBothWith These ranges)
|
||||
Just headRanges = headRangesOf ranges
|
||||
(leftRange, rightRange) = splitThese headRanges
|
||||
lineAndRemaining children ranges = let (intersections, remaining) = alignChildren getRange children ranges in
|
||||
(fromJust ((,) <$> ranges `applyThese` Join (runBothWith These intersections)), remaining)
|
||||
lineAndRemainingWhere predicate children = if any predicate children then Just . lineAndRemaining (filter predicate children) else const Nothing
|
||||
advancePast children = fromThese id id . runJoin . (drop 1 <$) $ unionThese (head . copoint <$> children)
|
||||
|
||||
headRangesOf :: Both [Range] -> Maybe (Join These Range)
|
||||
headRangesOf ranges = sequenceL (listToMaybe <$> Join (runBothWith These ranges))
|
||||
|
||||
-- | Given a list of aligned children, produce lists of their intersecting first lines, and a list of the remaining lines/nonintersecting first lines.
|
||||
alignChildren :: (Copointed c, Functor c) => (term -> Range) -> [c [Join These term]] -> Join These Range -> (Both [c term], [c [Join These term]])
|
||||
alignChildren _ [] _ = (both [] [], [])
|
||||
|
Loading…
Reference in New Issue
Block a user