(options: RunOptions | RunOptionsStream)
| 166 | } |
| 167 | |
| 168 | private isStreamRequested(options: RunOptions | RunOptionsStream): boolean { |
| 169 | return 'stream' in options && options.stream === true; |
| 170 | } |
| 171 | |
| 172 | private warnIfToolsWithStream(requestedStream: boolean): void { |
| 173 | if (this.hasTools && requestedStream) { |
no outgoing calls
no test coverage detected