(ctx context.Context, args ...any)
| 475 | } |
| 476 | |
| 477 | func (*shellCallHandler) Print(ctx context.Context, args ...any) error { |
| 478 | hc := interp.HandlerCtx(ctx) |
| 479 | _, err := fmt.Fprintln(hc.Stdout, args...) |
| 480 | return err |
| 481 | } |
| 482 | |
| 483 | func (h *shellCallHandler) AutoComplete(input string, cursorPos int) tuist.CompletionResult { |
| 484 | if h.mode == modePrompt { |
no outgoing calls
no test coverage detected