File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ internal struct IncrementalParseLookup {
161
161
// Fast path check: if parser is past all the edits then any matching node
162
162
// can be re-used.
163
163
if !edits. isEmpty && edits. last!. range. endOffset < node. position. utf8Offset {
164
- return true ;
164
+ return true
165
165
}
166
166
167
167
// Node can also not be reused if an edit has been made in the next token's
@@ -173,7 +173,7 @@ internal struct IncrementalParseLookup {
173
173
// Fast path check: if next sibling is before all the edits then we can
174
174
// re-use the node.
175
175
if !edits. isEmpty && edits. first!. range. offset > nextSibling. endPosition. utf8Offset {
176
- return true ;
176
+ return true
177
177
}
178
178
if let nextToken = nextSibling. raw. firstPresentToken {
179
179
nextLeafNodeLength = nextToken. totalLength - nextToken. trailingTriviaLength
You can’t perform that action at this time.
0 commit comments