(input, flush = true)
| 157 | }, |
| 158 | |
| 159 | writeLine(input, flush = true) { |
| 160 | if (flush) { |
| 161 | this.flushOutput(); |
| 162 | } |
| 163 | if (process.env.VERBOSE === '1') { |
| 164 | process.stderr.write(`< ${input}\n`); |
| 165 | } |
| 166 | child.stdin.write(input); |
| 167 | child.stdin.write('\n'); |
| 168 | }, |
| 169 | |
| 170 | command(input, flush = true) { |
| 171 | this.writeLine(input, flush); |
nothing calls this directly
no test coverage detected
searching dependent graphs…