(shallowPart: string)
| 671 | .map((deepParts) => { |
| 672 | const [shallowPart, ...otherParts] = deepParts; |
| 673 | const applyScope = (shallowPart: string) => { |
| 674 | if (this._selectorNeedsScoping(shallowPart, scopeSelector)) { |
| 675 | return this._applySelectorScope({ |
| 676 | selector: shallowPart, |
| 677 | scopeSelector, |
| 678 | hostSelector, |
| 679 | isParentSelector, |
| 680 | }); |
| 681 | } else { |
| 682 | return shallowPart; |
| 683 | } |
| 684 | }; |
| 685 | return [applyScope(shallowPart), ...otherParts].join(' '); |
| 686 | }) |
| 687 | .join(', '); |
nothing calls this directly
no test coverage detected