(quote)
| 123 | } |
| 124 | |
| 125 | function haxeTokenString(quote) { |
| 126 | return function(stream, state) { |
| 127 | if (!nextUntilUnescaped(stream, quote)) |
| 128 | state.tokenize = haxeTokenBase; |
| 129 | return ret("string", "string"); |
| 130 | }; |
| 131 | } |
| 132 | |
| 133 | function haxeTokenComment(stream, state) { |
| 134 | var maybeEnd = false, ch; |
no test coverage detected