(stream, state)
| 140 | } |
| 141 | |
| 142 | function tokenSComment(stream, state) {// SComment = Slash comment |
| 143 | stream.skipToEnd(); |
| 144 | state.tokenize = tokenBase; |
| 145 | return ret("comment", "comment"); |
| 146 | } |
| 147 | |
| 148 | function tokenCComment(stream, state) { |
| 149 | var maybeEnd = false, ch; |