We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a200aa9 commit 86894f3Copy full SHA for 86894f3
1 file changed
src/harness/fourslash.ts
@@ -1774,7 +1774,7 @@ namespace FourSlash {
1774
// of the incremental offset from each edit to the next. We assume these edit ranges don't overlap
1775
1776
edits = edits.sort((a, b) => a.span.start - b.span.start);
1777
- for (let i = 0; i < edits.length - 1; ++i) {
+ for (let i = 0; i < edits.length - 1; i++) {
1778
const firstEditSpan = edits[i].span;
1779
const firstEditEnd = firstEditSpan.start + firstEditSpan.length;
1780
assert.isTrue(firstEditEnd <= edits[i + 1].span.start);
0 commit comments