You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/CollectionItemScopeHandler/RangeIterator.ts
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
importtype{Range}from"@cursorless/common";
2
2
3
+
/**
4
+
* An iterator that allows for efficient lookup of ranges that contain a separator.
Copy file name to clipboardExpand all lines: packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/CollectionItemScopeHandler/createRangeTree.ts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,13 @@
1
1
importtype{Range}from"@cursorless/common";
2
2
import{RangeNode}from"./RangeNode";
3
3
4
+
/**
5
+
* Creates a tree of ranges from a list of ranges. This improves containing lookup time.
0 commit comments