(comment, needle)
| 5347 | * @returns {number} compared |
| 5348 | */ |
| 5349 | const compare = (comment, needle) => |
| 5350 | /** @type {Range} */ (comment.range)[0] - needle; |
| 5351 | const comments = /** @type {Comment[]} */ (this.comments); |
| 5352 | let idx = binarySearchBounds.ge(comments, rangeStart, compare); |
| 5353 | /** @type {Comment[]} */ |
no outgoing calls
no test coverage detected