(value: string)
| 34 | } |
| 35 | |
| 36 | static create(value: string): Parser { |
| 37 | const tokenizer = new Tokenizer(); |
| 38 | tokenizer.write(value); |
| 39 | return new Parser(tokenizer.read()); |
| 40 | } |
| 41 | |
| 42 | static parseValue(value: string): CSSValue { |
| 43 | return Parser.create(value).parseComponentValue(); |
no test coverage detected