(schema: Schema)
| 755 | |
| 756 | /* istanbul ignore next */ |
| 757 | wrapWith(schema: Schema) { |
| 758 | const wrappedNode = this.replaceWith({ ...schema, children: [this.export()] }); |
| 759 | return wrappedNode.children!.get(0); |
| 760 | } |
| 761 | |
| 762 | replaceWith(schema: Schema, migrate = false): any { |
| 763 | // reuse the same id? or replaceSelection |
no test coverage detected