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