(selectors: Set<string>, cmp: SurfacedComposition)
| 634 | } |
| 635 | |
| 636 | function addTweenSelectors(selectors: Set<string>, cmp: SurfacedComposition): void { |
| 637 | for (const t of cmp.tweens) { |
| 638 | if (t.method !== "set") selectors.add(t.target); |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | function addCssKeyframeSelectors(selectors: Set<string>, cmp: SurfacedComposition): void { |
| 643 | for (const css of cmp.cssKeyframes) { |
no test coverage detected