(stream, state)
| 58 | } |
| 59 | |
| 60 | function requestPath(stream, state) { |
| 61 | stream.eatWhile(/\S/); |
| 62 | state.cur = requestProtocol; |
| 63 | return "string-2"; |
| 64 | } |
| 65 | |
| 66 | function requestProtocol(stream, state) { |
| 67 | if (stream.match(/^HTTP\/\d\.\d$/)) { |
nothing calls this directly
no outgoing calls
no test coverage detected