(stream, state)
| 131 | }; |
| 132 | } |
| 133 | function tokenComment(stream, state) { |
| 134 | while (true) { |
| 135 | if (stream.skipTo("*")) { |
| 136 | stream.next(); |
| 137 | if (stream.eat("/")) { |
| 138 | state.tokenize = tokenBase; |
| 139 | break; |
| 140 | } |
| 141 | } else { |
| 142 | stream.skipToEnd(); |
| 143 | break; |
| 144 | } |
| 145 | } |
| 146 | return "comment"; |
| 147 | } |
| 148 | |
| 149 | function pushContext(stream, state, type) { |
| 150 | state.context = { |
nothing calls this directly
no outgoing calls
no test coverage detected