1
1
const assert = require ( 'assert' )
2
2
const DocumentTree = require ( './document-tree' )
3
3
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' )
5
5
6
6
module . exports =
7
7
class Document {
@@ -1176,7 +1176,7 @@ class Document {
1176
1176
1177
1177
for ( let i = 0 ; i < operations . length ; i ++ ) {
1178
1178
const operation = operations [ i ]
1179
- const { type, spliceId, deletion , insertion } = operation
1179
+ const { type, spliceId} = operation
1180
1180
if ( spliceId ) {
1181
1181
const spliceIdString = spliceIdToString ( spliceId )
1182
1182
if ( type === 'splice' ) newSpliceIds . add ( spliceIdString )
@@ -1268,7 +1268,7 @@ class Document {
1268
1268
} else if ( compare ( segmentEndOffset , offset ) === 0 ) {
1269
1269
return segment . nextSplit
1270
1270
} else {
1271
- const [ prefix , suffix ] = this . splitSegment ( splitTree , segment , traversal ( offset , segment . offset ) )
1271
+ const [ , suffix ] = this . splitSegment ( splitTree , segment , traversal ( offset , segment . offset ) )
1272
1272
return suffix
1273
1273
}
1274
1274
}
@@ -1280,7 +1280,7 @@ class Document {
1280
1280
if ( compare ( segmentEndOffset , offset ) === 0 ) {
1281
1281
return segment
1282
1282
} else {
1283
- const [ prefix , suffix ] = this . splitSegment ( splitTree , segment , traversal ( offset , segment . offset ) )
1283
+ const [ prefix ] = this . splitSegment ( splitTree , segment , traversal ( offset , segment . offset ) )
1284
1284
return prefix
1285
1285
}
1286
1286
}
@@ -1459,24 +1459,6 @@ function isEmptyLogicalRange ({startDependencyId, offsetInStartDependency, endDe
1459
1459
)
1460
1460
}
1461
1461
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
-
1480
1462
function spliceIdsEqual ( a , b ) {
1481
1463
return a . site === b . site && a . seq === b . seq
1482
1464
}
0 commit comments