()
| 408 | } |
| 409 | |
| 410 | private _checkForErrors(): void { |
| 411 | if ((typeof ngDevMode === 'undefined' || ngDevMode) && !this._isStandalone()) { |
| 412 | checkParentType(this._parent); |
| 413 | } |
| 414 | this._checkName(); |
| 415 | } |
| 416 | |
| 417 | private _checkName(): void { |
| 418 | if (this.options && this.options.name) this.name = this.options.name; |
no test coverage detected