(cm, doc)
| 6462 | |
| 6463 | // Attach a document to an editor. |
| 6464 | function attachDoc(cm, doc) { |
| 6465 | if (doc.cm) throw new Error("This document is already in use."); |
| 6466 | cm.doc = doc; |
| 6467 | doc.cm = cm; |
| 6468 | estimateLineHeights(cm); |
| 6469 | loadMode(cm); |
| 6470 | if (!cm.options.lineWrapping) findMaxLine(cm); |
| 6471 | cm.options.mode = doc.modeOption; |
| 6472 | regChange(cm); |
| 6473 | } |
| 6474 | |
| 6475 | // LINE UTILITIES |
| 6476 |
no test coverage detected
searching dependent graphs…