(selectors: Set<string>, cmp: SurfacedComposition)
| 640 | } |
| 641 | |
| 642 | function addCssKeyframeSelectors(selectors: Set<string>, cmp: SurfacedComposition): void { |
| 643 | for (const css of cmp.cssKeyframes) { |
| 644 | for (const selector of css.selectors) { |
| 645 | if (selector) selectors.add(selector); |
| 646 | } |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | function addAnimeSelectors(selectors: Set<string>, cmp: SurfacedComposition): void { |
| 651 | for (const anime of cmp.anime) { |
no test coverage detected