(stream, state)
| 215 | }; |
| 216 | } |
| 217 | function readBlockComment(stream, state) { |
| 218 | if (stream.sol() && stream.match("=end") && stream.eol()) |
| 219 | state.tokenize.pop(); |
| 220 | stream.skipToEnd(); |
| 221 | return "comment"; |
| 222 | } |
| 223 | |
| 224 | return { |
| 225 | startState: function() { |
nothing calls this directly
no outgoing calls
no test coverage detected