(stream, state)
| 106 | } |
| 107 | |
| 108 | function tokenParenthesized(stream, state) { |
| 109 | stream.next(); // Must be '(' |
| 110 | if (!stream.match(/\s*[\"\')]/, false)) |
| 111 | state.tokenize = tokenString(")"); |
| 112 | else |
| 113 | state.tokenize = null; |
| 114 | return ret(null, "("); |
| 115 | } |
| 116 | |
| 117 | // Context management |
| 118 |
nothing calls this directly
no test coverage detected