()
| 80 | } |
| 81 | |
| 82 | async detectShell(): Promise<string> { |
| 83 | // Default implementation returns configured shell |
| 84 | // Platforms can override for more sophisticated detection |
| 85 | return this.getDefaultShell() |
| 86 | } |
| 87 | |
| 88 | async detectLocale(): Promise<string> { |
| 89 | // Default: check environment or return fallback |
nothing calls this directly
no test coverage detected