(stream, state)
| 175 | } |
| 176 | |
| 177 | function tokenSComment(stream, state) { // SComment = Slash comment |
| 178 | stream.skipToEnd(); |
| 179 | state.tokenize = tokenBase; |
| 180 | return ret("comment", "comment"); |
| 181 | } |
| 182 | |
| 183 | function tokenCComment(stream, state) { |
| 184 | var maybeEnd = false, ch; |