(marker, from, to)
| 6104 | // TEXTMARKER SPANS |
| 6105 | |
| 6106 | function MarkedSpan(marker, from, to) { |
| 6107 | this.marker = marker; |
| 6108 | this.from = from; this.to = to; |
| 6109 | } |
| 6110 | |
| 6111 | // Search an array of spans for a span matching the given marker. |
| 6112 | function getMarkedSpanFor(spans, marker) { |
nothing calls this directly
no outgoing calls
no test coverage detected