(scopeSelector: string)
| 693 | } |
| 694 | |
| 695 | private _makeScopeMatcher(scopeSelector: string): RegExp { |
| 696 | const lre = /\[/g; |
| 697 | const rre = /\]/g; |
| 698 | scopeSelector = scopeSelector.replace(lre, '\\[').replace(rre, '\\]'); |
| 699 | return new RegExp('^(' + scopeSelector + ')' + _selectorReSuffix, 'm'); |
| 700 | } |
| 701 | |
| 702 | // scope via name and [is=name] |
| 703 | private _applySimpleSelectorScope( |
no test coverage detected