(stream, state)
| 104 | }; |
| 105 | } |
| 106 | function tokenComment(stream, state) { |
| 107 | var maybeEnd = false, ch; |
| 108 | while (ch = stream.next()) { |
| 109 | if (ch == "#" && maybeEnd) { |
| 110 | state.tokenize = tokenBase; |
| 111 | break; |
| 112 | } |
| 113 | maybeEnd = (ch == "*"); |
| 114 | } |
| 115 | return "comment"; |
| 116 | } |
| 117 | function tokenUnparsed(stream, state) { |
| 118 | var maybeEnd = 0, ch; |
| 119 | while (ch = stream.next()) { |
nothing calls this directly
no outgoing calls
no test coverage detected