(quietly)
| 900 | } |
| 901 | |
| 902 | function state_gather(quietly) { |
| 903 | if(/[^\d\w\-_]/.test(c) && !escaped) { |
| 904 | if(c === '\\') { |
| 905 | escaped = true |
| 906 | } else { |
| 907 | !quietly && stream.queue(token()) |
| 908 | state = READY |
| 909 | --idx |
| 910 | } |
| 911 | |
| 912 | return |
| 913 | } |
| 914 | |
| 915 | escaped = false |
| 916 | gathered.push(c) |
| 917 | } |
| 918 | |
| 919 | function token() { |
| 920 | var data = gathered.join('') |
no test coverage detected