()
| 586 | |
| 587 | @profile |
| 588 | private updateMatch() { |
| 589 | const view = this.viewRef.get(); |
| 590 | if (view && view._styleScope) { |
| 591 | this._match = view._styleScope.matchSelectors(view) ?? CssState.emptyMatch; |
| 592 | this._appliedSelectorsVersion = view._styleScope.getSelectorsVersion(); |
| 593 | } else { |
| 594 | this._match = CssState.emptyMatch; |
| 595 | } |
| 596 | |
| 597 | this._matchInvalid = false; |
| 598 | } |
| 599 | |
| 600 | @profile |
| 601 | private updateDynamicState(): void { |
no test coverage detected