(marker)
| 1397 | // Helpers used when computing which overlapping collapsed span |
| 1398 | // counts as the larger one. |
| 1399 | function extraLeft(marker) { |
| 1400 | return marker.inclusiveLeft ? -1 : 0 |
| 1401 | } |
| 1402 | function extraRight(marker) { |
| 1403 | return marker.inclusiveRight ? 1 : 0 |
| 1404 | } |
no outgoing calls
no test coverage detected