()
| 388 | } |
| 389 | |
| 390 | private _checkName(): void { |
| 391 | if (this.options && this.options.name) this.name = this.options.name; |
| 392 | |
| 393 | if (!this._isStandalone() && !this.name && (typeof ngDevMode === 'undefined' || ngDevMode)) { |
| 394 | throw missingNameException(); |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | private _updateValue(value: any): void { |
| 399 | resolvedPromise.then(() => { |
no test coverage detected