MCPcopy Index your code
hub / github.com/csev/py4e / detachMarkedSpans

Function detachMarkedSpans

tools/pythonauto/static/codemirror/codemirror.js:4301–4307  ·  view source on GitHub ↗
(line)

Source from the content-addressed store, hash-verified

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;

Callers 2

updateLineFunction · 0.70
cleanUpLineFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected