Skip to content

Commit 3a97e16

Browse files
committed
refactor: extract to local variable to avoid multiple computations
1 parent ed5830c commit 3a97e16

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/MyersDiffWithLinearSpace.kt

+11-10
Original file line numberDiff line numberDiff line change
@@ -64,28 +64,29 @@ public class MyersDiffWithLinearSpace<T>(
6464
++i
6565
++j
6666
} else {
67+
// index is less than 0 here if data.script is empty
68+
val index = data.script.size - 1
69+
6770
// TODO: compress these commands
6871
if (end1 - start1 > end2 - start2) {
69-
if (data.script.isEmpty() ||
70-
data.script[data.script.size - 1].endOriginal != i ||
71-
data.script[data.script.size - 1].deltaType != DeltaType.DELETE
72+
if (index < 0 ||
73+
data.script[index].endOriginal != i ||
74+
data.script[index].deltaType != DeltaType.DELETE
7275
) {
7376
data.script.add(Change(DeltaType.DELETE, i, i + 1, j, j))
7477
} else {
75-
data.script[data.script.size - 1] =
76-
data.script[data.script.size - 1].copy(endOriginal = i + 1)
78+
data.script[index] = data.script[index].copy(endOriginal = i + 1)
7779
}
7880

7981
++i
8082
} else {
81-
if (data.script.isEmpty() ||
82-
data.script[data.script.size - 1].endRevised != j ||
83-
data.script[data.script.size - 1].deltaType != DeltaType.INSERT
83+
if (index < 0 ||
84+
data.script[index].endRevised != j ||
85+
data.script[index].deltaType != DeltaType.INSERT
8486
) {
8587
data.script.add(Change(DeltaType.INSERT, i, i, j, j + 1))
8688
} else {
87-
data.script[data.script.size - 1] =
88-
data.script[data.script.size - 1].copy(endRevised = j + 1)
89+
data.script[index] = data.script[index].copy(endRevised = j + 1)
8990
}
9091

9192
++j

0 commit comments

Comments
 (0)