(quote)
| 127 | } |
| 128 | |
| 129 | function jsTokenString(quote) { |
| 130 | return function(stream, state) { |
| 131 | if (!nextUntilUnescaped(stream, quote)) |
| 132 | state.tokenize = jsTokenBase; |
| 133 | return ret("string", "string"); |
| 134 | }; |
| 135 | } |
| 136 | |
| 137 | function jsTokenComment(stream, state) { |
| 138 | var maybeEnd = false, ch; |
no test coverage detected
searching dependent graphs…