495
};
496
}
498
>
const diffResult = computeDiff(this.original, this.modified, this.continueLineDiff, this.shouldMakePrettyDiff);
499
>
const rawChanges = diffResult.changes;
500
>
const quitEarly = diffResult.quitEarly;
501
>
502
>
// The diff is always computed with ignoring trim whitespace
503
>
// This ensures we get the prettiest diff
504
>
505
>
if (this.shouldIgnoreTrimWhitespace) {
506
const lineChanges: LineChange[] = [];
507
for (let i = 0, length = rawChanges.length; i < length; i++) {