()
| 415 | } |
| 416 | |
| 417 | private _checkName(): void { |
| 418 | if (this.options && this.options.name) this.name = this.options.name; |
| 419 | |
| 420 | if (!this._isStandalone() && !this.name && (typeof ngDevMode === 'undefined' || ngDevMode)) { |
| 421 | throw missingNameException(); |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | private _updateValue(value: any): void { |
| 426 | resolvedPromise.then(() => { |
no test coverage detected