()
| 72 | } |
| 73 | |
| 74 | parseComponentValues(): CSSValue[] { |
| 75 | const values = []; |
| 76 | while (true) { |
| 77 | const value = this.consumeComponentValue(); |
| 78 | if (value.type === TokenType.EOF_TOKEN) { |
| 79 | return values; |
| 80 | } |
| 81 | values.push(value); |
| 82 | values.push(); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | private consumeComponentValue(): CSSValue { |
| 87 | const token = this.consumeToken(); |
no test coverage detected