(ctx context.Context)
| 119 | } |
| 120 | |
| 121 | func newCommandOutput(ctx context.Context) *commandOutput { |
| 122 | emit, _ := tools.ToolOutputEmitterFromContext(ctx) |
| 123 | return &commandOutput{emit: emit} |
| 124 | } |
| 125 | |
| 126 | func (o *commandOutput) Write(p []byte) (int, error) { |
| 127 | o.mu.Lock() |
no test coverage detected