()
| 400 | } |
| 401 | |
| 402 | instantiate() { |
| 403 | validateThisInternalField(this, kWrap, 'SourceTextModule'); |
| 404 | if (this.status !== 'unlinked') { |
| 405 | throw new ERR_VM_MODULE_STATUS('must be unlinked'); |
| 406 | } |
| 407 | this[kWrap].instantiate(); |
| 408 | } |
| 409 | |
| 410 | get dependencySpecifiers() { |
| 411 | this.#dependencySpecifiers ??= ObjectFreeze( |
no outgoing calls
no test coverage detected