(stream, state)
| 13 | |
| 14 | CodeMirror.defineMode("http", function() { |
| 15 | function failFirstLine(stream, state) { |
| 16 | stream.skipToEnd(); |
| 17 | state.cur = header; |
| 18 | return "error"; |
| 19 | } |
| 20 | |
| 21 | function start(stream, state) { |
| 22 | if (stream.match(/^HTTP\/\d\.\d/)) { |
no outgoing calls
no test coverage detected