133
original3LineHashes.forEach(key, ({ range }) => {
134
for (const lastMapping of lastMappings) {
136
>
if (lastMapping.originalLineRange.endLineNumberExclusive + 1 === range.endLineNumberExclusive &&
137
>
lastMapping.modifiedLineRange.endLineNumberExclusive + 1 === currentModifiedRange.endLineNumberExclusive) {
138
>
lastMapping.originalLineRange = new LineRange(lastMapping.originalLineRange.startLineNumber, range.endLineNumberExclusive);
139
>
lastMapping.modifiedLineRange = new LineRange(lastMapping.modifiedLineRange.startLineNumber, currentModifiedRange.endLineNumberExclusive);
140
>
nextMappings.push(lastMapping);
141
>
return;
142
>
}
143
>
}
144
145
const mapping: PossibleMapping = {