(cm, doc)
| 7777 | |
| 7778 | // Attach a document to an editor. |
| 7779 | function attachDoc(cm, doc) { |
| 7780 | if (doc.cm) throw new Error("This document is already in use."); |
| 7781 | cm.doc = doc; |
| 7782 | doc.cm = cm; |
| 7783 | estimateLineHeights(cm); |
| 7784 | loadMode(cm); |
| 7785 | if (!cm.options.lineWrapping) findMaxLine(cm); |
| 7786 | cm.options.mode = doc.modeOption; |
| 7787 | regChange(cm); |
| 7788 | } |
| 7789 | |
| 7790 | // LINE UTILITIES |
| 7791 |
no test coverage detected