(quote)
| 93 | } |
| 94 | |
| 95 | function jsTokenString(quote) { |
| 96 | return function(stream, state) { |
| 97 | if (!nextUntilUnescaped(stream, quote)) |
| 98 | state.tokenize = jsTokenBase; |
| 99 | return ret("string", "string"); |
| 100 | }; |
| 101 | } |
| 102 | |
| 103 | function jsTokenComment(stream, state) { |
| 104 | var maybeEnd = false, ch; |
no test coverage detected