(line)
| 110 | |
| 111 | // With haves, we wait for 'ACK', but only if not ending in 'continue'. |
| 112 | function ack_objects_continue (line) { |
| 113 | return !(line.search(/^ACK/) !== -1 && line.search(/continue$/) === -1) |
| 114 | } |
| 115 | |
| 116 | // Writes one line to stdin so git-upload-pack can understand. |
| 117 | function writeln (line) { |
nothing calls this directly
no outgoing calls
no test coverage detected