2
2
3
3
const {
4
4
ArrayPrototypePush,
5
- ArrayPrototypeSlice,
6
5
Int32Array,
7
6
StringPrototypeEndsWith,
8
7
} = primordials ;
@@ -16,7 +15,7 @@ function areLinesEqual(actual, expected, checkCommaDisparity) {
16
15
return true ;
17
16
}
18
17
if ( checkCommaDisparity ) {
19
- return ` ${ actual } ,` === expected || actual === ` ${ expected } ,` ;
18
+ return ( actual + ',' ) === expected || actual === ( expected + ',' ) ;
20
19
}
21
20
return false ;
22
21
}
@@ -26,12 +25,10 @@ function myersDiff(actual, expected, checkCommaDisparity = false) {
26
25
const expectedLength = expected . length ;
27
26
const max = actualLength + expectedLength ;
28
27
const v = new Int32Array ( 2 * max + 1 ) ;
29
-
30
28
const trace = [ ] ;
31
29
32
30
for ( let diffLevel = 0 ; diffLevel <= max ; diffLevel ++ ) {
33
- const newTrace = ArrayPrototypeSlice ( v ) ;
34
- ArrayPrototypePush ( trace , newTrace ) ;
31
+ ArrayPrototypePush ( trace , new Int32Array ( v ) ) ; // Clone the current state of `v`
35
32
36
33
for ( let diagonalIndex = - diffLevel ; diagonalIndex <= diffLevel ; diagonalIndex += 2 ) {
37
34
const offset = diagonalIndex + max ;
@@ -89,22 +86,17 @@ function backtrack(trace, actual, expected, checkCommaDisparity) {
89
86
90
87
while ( x > prevX && y > prevY ) {
91
88
const actualItem = actual [ x - 1 ] ;
92
- const value =
93
- ! checkCommaDisparity || StringPrototypeEndsWith ( actualItem , ',' ) ?
94
- actualItem :
95
- expected [ y - 1 ] ;
89
+ const value = checkCommaDisparity && ! StringPrototypeEndsWith ( actualItem , ',' ) ? expected [ y - 1 ] : actualItem ;
96
90
ArrayPrototypePush ( result , { __proto__ : null , type : 'nop' , value } ) ;
97
91
x -- ;
98
92
y -- ;
99
93
}
100
94
101
95
if ( diffLevel > 0 ) {
102
96
if ( x > prevX ) {
103
- ArrayPrototypePush ( result , { __proto__ : null , type : 'insert' , value : actual [ x - 1 ] } ) ;
104
- x -- ;
97
+ ArrayPrototypePush ( result , { __proto__ : null , type : 'insert' , value : actual [ -- x ] } ) ;
105
98
} else {
106
- ArrayPrototypePush ( result , { __proto__ : null , type : 'delete' , value : expected [ y - 1 ] } ) ;
107
- y -- ;
99
+ ArrayPrototypePush ( result , { __proto__ : null , type : 'delete' , value : expected [ -- y ] } ) ;
108
100
}
109
101
}
110
102
}
0 commit comments