(marker)
| 6534 | // Helpers used when computing which overlapping collapsed span |
| 6535 | // counts as the larger one. |
| 6536 | function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0; } |
| 6537 | function extraRight(marker) { return marker.inclusiveRight ? 1 : 0; } |
| 6538 | |
| 6539 | // Returns a number indicating which of two overlapping collapsed |
no outgoing calls
no test coverage detected