(stream, state)
| 1 | CodeMirror.defineMode("http", function() { |
| 2 | function failFirstLine(stream, state) { |
| 3 | stream.skipToEnd(); |
| 4 | state.cur = header; |
| 5 | return "error"; |
| 6 | } |
| 7 | |
| 8 | function start(stream, state) { |
| 9 | if (stream.match(/^HTTP\/\d\.\d/)) { |
no outgoing calls
no test coverage detected