504
505
if (this.shouldIgnoreTrimWhitespace) {
507
>
for (let i = 0, length = rawChanges.length; i < length; i++) {
508
>
lineChanges.push(LineChange.createFromDiffResult(this.shouldIgnoreTrimWhitespace, rawChanges[i], this.original, this.modified, this.continueCharDiff, this.shouldComputeCharChanges, this.shouldPostProcessCharChanges));
509
>
}
510
>
return {
511
>
quitEarly: quitEarly,
512
>
changes: lineChanges
513
>
};
514
>
}
515
516
// Need to post-process and introduce changes where the trim whitespace is different