(line)
| 4299 | } |
| 4300 | |
| 4301 | function detachMarkedSpans(line) { |
| 4302 | var spans = line.markedSpans; |
| 4303 | if (!spans) return; |
| 4304 | for (var i = 0; i < spans.length; ++i) |
| 4305 | spans[i].marker.detachLine(line); |
| 4306 | line.markedSpans = null; |
| 4307 | } |
| 4308 | |
| 4309 | function attachMarkedSpans(line, spans) { |
| 4310 | if (!spans) return; |
no outgoing calls
no test coverage detected