()
| 381 | } |
| 382 | |
| 383 | private _checkForErrors(): void { |
| 384 | if ((typeof ngDevMode === 'undefined' || ngDevMode) && !this._isStandalone()) { |
| 385 | checkParentType(this._parent); |
| 386 | } |
| 387 | this._checkName(); |
| 388 | } |
| 389 | |
| 390 | private _checkName(): void { |
| 391 | if (this.options && this.options.name) this.name = this.options.name; |
no test coverage detected