(cm, doc)
| 7514 | |
| 7515 | // Attach a document to an editor. |
| 7516 | function attachDoc(cm, doc) { |
| 7517 | if (doc.cm) throw new Error("This document is already in use."); |
| 7518 | cm.doc = doc; |
| 7519 | doc.cm = cm; |
| 7520 | estimateLineHeights(cm); |
| 7521 | loadMode(cm); |
| 7522 | if (!cm.options.lineWrapping) findMaxLine(cm); |
| 7523 | cm.options.mode = doc.modeOption; |
| 7524 | regChange(cm); |
| 7525 | } |
| 7526 | |
| 7527 | // LINE UTILITIES |
| 7528 |
no test coverage detected