Skip to content

Commit afd58aa

Browse files
committed
Fix compilation
1 parent ec689c6 commit afd58aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/editor/test/common/viewModel/splitLinesCollection.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ function createLineMapping(breakingLengths: number[], breakingOffsetsVisibleColu
781781
for (let i = 0; i < breakingLengths.length; i++) {
782782
sums[i] = (i > 0 ? sums[i - 1] : 0) + breakingLengths[i];
783783
}
784-
return new LineBreakingData(0, sums, breakingOffsetsVisibleColumn, wrappedTextIndentWidth);
784+
return new LineBreakingData(sums, breakingOffsetsVisibleColumn, wrappedTextIndentWidth);
785785
}
786786

787787
function createModel(text: string): ISimpleModel {

0 commit comments

Comments
 (0)