()
| 67 | function _createConstructor(schema, options) { |
| 68 | // compile an embedded document for this schema |
| 69 | function EmbeddedDocument() { |
| 70 | Subdocument.apply(this, arguments); |
| 71 | } |
| 72 | |
| 73 | EmbeddedDocument.prototype = Object.create(Subdocument.prototype); |
| 74 | EmbeddedDocument.prototype.$__setSchema(schema); |
nothing calls this directly
no outgoing calls
no test coverage detected