(quietly)
| 47585 | } |
| 47586 | |
| 47587 | function state_gather(quietly) { |
| 47588 | if(/[^\d\w\-_]/.test(c) && !escaped) { |
| 47589 | if(c === '\\') { |
| 47590 | escaped = true |
| 47591 | } else { |
| 47592 | !quietly && stream.queue(token()) |
| 47593 | state = READY |
| 47594 | --idx |
| 47595 | } |
| 47596 | |
| 47597 | return |
| 47598 | } |
| 47599 | |
| 47600 | escaped = false |
| 47601 | gathered.push(c) |
| 47602 | } |
| 47603 | |
| 47604 | function token() { |
| 47605 | var data = gathered.join('') |
no test coverage detected