Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit c4619be

Browse files
author
Antonio Scandurra
committed
Delete unused code
1 parent aea500d commit c4619be

File tree

2 files changed

+5
-23
lines changed

2 files changed

+5
-23
lines changed

lib/document.js

+4-22
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const assert = require('assert')
22
const DocumentTree = require('./document-tree')
33
const SplitTree = require('./split-tree')
4-
const {ZERO_POINT, compare, traverse, traversal, characterIndexForPosition, extentForText} = require('./point-helpers')
4+
const {ZERO_POINT, compare, traverse, traversal, extentForText} = require('./point-helpers')
55

66
module.exports =
77
class Document {
@@ -1176,7 +1176,7 @@ class Document {
11761176

11771177
for (let i = 0; i < operations.length; i++) {
11781178
const operation = operations[i]
1179-
const {type, spliceId, deletion, insertion} = operation
1179+
const {type, spliceId} = operation
11801180
if (spliceId) {
11811181
const spliceIdString = spliceIdToString(spliceId)
11821182
if (type === 'splice') newSpliceIds.add(spliceIdString)
@@ -1268,7 +1268,7 @@ class Document {
12681268
} else if (compare(segmentEndOffset, offset) === 0) {
12691269
return segment.nextSplit
12701270
} else {
1271-
const [prefix, suffix] = this.splitSegment(splitTree, segment, traversal(offset, segment.offset))
1271+
const [, suffix] = this.splitSegment(splitTree, segment, traversal(offset, segment.offset))
12721272
return suffix
12731273
}
12741274
}
@@ -1280,7 +1280,7 @@ class Document {
12801280
if (compare(segmentEndOffset, offset) === 0) {
12811281
return segment
12821282
} else {
1283-
const [prefix, suffix] = this.splitSegment(splitTree, segment, traversal(offset, segment.offset))
1283+
const [prefix] = this.splitSegment(splitTree, segment, traversal(offset, segment.offset))
12841284
return prefix
12851285
}
12861286
}
@@ -1459,24 +1459,6 @@ function isEmptyLogicalRange ({startDependencyId, offsetInStartDependency, endDe
14591459
)
14601460
}
14611461

1462-
function markersEqual (a, b) {
1463-
return (
1464-
logicalRangesEqual(a.range, b.range) &&
1465-
a.exclusive === b.exclusive &&
1466-
a.reversed === b.reversed &&
1467-
a.tailed === b.tailed
1468-
)
1469-
}
1470-
1471-
function logicalRangesEqual (a, b) {
1472-
return (
1473-
spliceIdsEqual(a.startDependencyId, b.startDependencyId) &&
1474-
compare(a.offsetInStartDependency, b.offsetInStartDependency) === 0 &&
1475-
spliceIdsEqual(a.endDependencyId, b.endDependencyId) &&
1476-
compare(a.offsetInEndDependency, b.offsetInEndDependency) === 0
1477-
)
1478-
}
1479-
14801462
function spliceIdsEqual (a, b) {
14811463
return a.site === b.site && a.seq === b.seq
14821464
}

lib/split-tree.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const SplayTree = require('./splay-tree')
2-
const {ZERO_POINT, compare, traverse, traversal, characterIndexForPosition, extentForText} = require('./point-helpers')
2+
const {ZERO_POINT, compare, traverse, traversal, characterIndexForPosition} = require('./point-helpers')
33

44
module.exports =
55
class SplitTree extends SplayTree {

0 commit comments

Comments
 (0)