(marker, from, to)
| 6306 | // TEXTMARKER SPANS |
| 6307 | |
| 6308 | function MarkedSpan(marker, from, to) { |
| 6309 | this.marker = marker; |
| 6310 | this.from = from; this.to = to; |
| 6311 | } |
| 6312 | |
| 6313 | // Search an array of spans for a span matching the given marker. |
| 6314 | function getMarkedSpanFor(spans, marker) { |
nothing calls this directly
no outgoing calls
no test coverage detected