()
| 47496 | } |
| 47497 | |
| 47498 | function state_attr_start() { |
| 47499 | state_gather(true) |
| 47500 | |
| 47501 | if(state !== READY) { |
| 47502 | return |
| 47503 | } |
| 47504 | |
| 47505 | if(c === ']') { |
| 47506 | state = ATTR |
| 47507 | stream.queue(token()) |
| 47508 | state = READY |
| 47509 | |
| 47510 | return |
| 47511 | } |
| 47512 | |
| 47513 | lhs = gathered.join('') |
| 47514 | gathered.length = 0 |
| 47515 | state = ATTR_COMP |
| 47516 | } |
| 47517 | |
| 47518 | function state_attr_compare() { |
| 47519 | if(/[=~|$^*]/.test(c)) { |
no test coverage detected