(stream, state)
| 135 | } |
| 136 | |
| 137 | function jsTokenComment(stream, state) { |
| 138 | var maybeEnd = false, ch; |
| 139 | while (ch = stream.next()) { |
| 140 | if (ch == "/" && maybeEnd) { |
| 141 | state.tokenize = jsTokenBase; |
| 142 | break; |
| 143 | } |
| 144 | maybeEnd = (ch == "*"); |
| 145 | } |
| 146 | return ret("comment", "comment"); |
| 147 | } |
| 148 | |
| 149 | // Parser |
| 150 |
nothing calls this directly
no test coverage detected
searching dependent graphs…