(cm, doc)
| 7745 | |
| 7746 | // Attach a document to an editor. |
| 7747 | function attachDoc(cm, doc) { |
| 7748 | if (doc.cm) throw new Error("This document is already in use."); |
| 7749 | cm.doc = doc; |
| 7750 | doc.cm = cm; |
| 7751 | estimateLineHeights(cm); |
| 7752 | loadMode(cm); |
| 7753 | if (!cm.options.lineWrapping) findMaxLine(cm); |
| 7754 | cm.options.mode = doc.modeOption; |
| 7755 | regChange(cm); |
| 7756 | } |
| 7757 | |
| 7758 | // LINE UTILITIES |
| 7759 |
no test coverage detected