(cm, doc)
| 4544 | } |
| 4545 | |
| 4546 | function attachDoc(cm, doc) { |
| 4547 | if (doc.cm) throw new Error("This document is already in use."); |
| 4548 | cm.doc = doc; |
| 4549 | doc.cm = cm; |
| 4550 | estimateLineHeights(cm); |
| 4551 | loadMode(cm); |
| 4552 | if (!cm.options.lineWrapping) computeMaxLength(cm); |
| 4553 | cm.options.mode = doc.modeOption; |
| 4554 | regChange(cm); |
| 4555 | } |
| 4556 | |
| 4557 | // LINE UTILITIES |
| 4558 |
no test coverage detected