(cm, doc)
| 6412 | |
| 6413 | // Attach a document to an editor. |
| 6414 | function attachDoc(cm, doc) { |
| 6415 | if (doc.cm) throw new Error("This document is already in use."); |
| 6416 | cm.doc = doc; |
| 6417 | doc.cm = cm; |
| 6418 | estimateLineHeights(cm); |
| 6419 | loadMode(cm); |
| 6420 | if (!cm.options.lineWrapping) findMaxLine(cm); |
| 6421 | cm.options.mode = doc.modeOption; |
| 6422 | regChange(cm); |
| 6423 | } |
| 6424 | |
| 6425 | // LINE UTILITIES |
| 6426 |
no test coverage detected