()
| 737 | } |
| 738 | |
| 739 | function state_pseudo() { |
| 740 | rhs = state |
| 741 | state_gather(true) |
| 742 | |
| 743 | if(state !== READY) { |
| 744 | return |
| 745 | } |
| 746 | |
| 747 | if(c === '(') { |
| 748 | lhs = gathered.join('') |
| 749 | state = PSEUDOSTART |
| 750 | gathered.length = 0 |
| 751 | depth = 1 |
| 752 | ++idx |
| 753 | |
| 754 | return |
| 755 | } |
| 756 | |
| 757 | state = PSEUDOCLASS |
| 758 | stream.queue(token()) |
| 759 | state = READY |
| 760 | } |
| 761 | |
| 762 | function state_pseudostart() { |
| 763 | if(gathered.length === 0 && !quote) { |
no test coverage detected