(stream, state)
| 640 | CodeMirror.registerHelper("hintWords", "css", allWords); |
| 641 | |
| 642 | function tokenCComment(stream, state) { |
| 643 | var maybeEnd = false, ch; |
| 644 | while ((ch = stream.next()) != null) { |
| 645 | if (maybeEnd && ch == "/") { |
| 646 | state.tokenize = null; |
| 647 | break; |
| 648 | } |
| 649 | maybeEnd = (ch == "*"); |
| 650 | } |
| 651 | return ["comment", "comment"]; |
| 652 | } |
| 653 | |
| 654 | function tokenSGMLComment(stream, state) { |
| 655 | if (stream.skipTo("-->")) { |