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