()
| 47422 | } |
| 47423 | |
| 47424 | function state_pseudo() { |
| 47425 | rhs = state |
| 47426 | state_gather(true) |
| 47427 | |
| 47428 | if(state !== READY) { |
| 47429 | return |
| 47430 | } |
| 47431 | |
| 47432 | if(c === '(') { |
| 47433 | lhs = gathered.join('') |
| 47434 | state = PSEUDOSTART |
| 47435 | gathered.length = 0 |
| 47436 | depth = 1 |
| 47437 | ++idx |
| 47438 | |
| 47439 | return |
| 47440 | } |
| 47441 | |
| 47442 | state = PSEUDOCLASS |
| 47443 | stream.queue(token()) |
| 47444 | state = READY |
| 47445 | } |
| 47446 | |
| 47447 | function state_pseudostart() { |
| 47448 | if(gathered.length === 0 && !quote) { |
no test coverage detected