(selectorText: string)
| 90 | } |
| 91 | |
| 92 | function parseSelectors(selectorText: string) { |
| 93 | const excludeRanges = getTokenExclusionRanges(selectorText); |
| 94 | return splitExcluding(selectorText, ',', excludeRanges); |
| 95 | } |
| 96 | |
| 97 | function parseDeclarations(cssDeclarationsText: string) { |
| 98 | const declarations: ParsedDeclaration[] = []; |
no test coverage detected