(stream, state)
| 289 | } |
| 290 | |
| 291 | function tokenParenthesized(stream, state) { |
| 292 | stream.next(); // Must be '(' |
| 293 | if (!stream.match(/\s*[\"\']/, false)) |
| 294 | state.tokenize = tokenString(")", true); |
| 295 | else |
| 296 | state.tokenize = tokenBase; |
| 297 | return ret(null, "("); |
| 298 | } |
| 299 | |
| 300 | return { |
| 301 | startState: function(base) { |
nothing calls this directly
no test coverage detected