()
| 5550 | } |
| 5551 | |
| 5552 | function style_pattern() { |
| 5553 | if (next_token.id === '{') { |
| 5554 | warn('expected_style_pattern'); |
| 5555 | } |
| 5556 | for (;;) { |
| 5557 | style_selector(); |
| 5558 | if (next_token.id === '</' || next_token.id === '{' || |
| 5559 | next_token.id === '}' || next_token.id === '(end)') { |
| 5560 | return ''; |
| 5561 | } |
| 5562 | if (next_token.id === ',') { |
| 5563 | comma(); |
| 5564 | } |
| 5565 | } |
| 5566 | } |
| 5567 | |
| 5568 | function style_list() { |
| 5569 | while (next_token.id !== '}' && next_token.id !== '</' && |
no test coverage detected
searching dependent graphs…