()
| 16 | * Mutations to toolEnv should be done via setupToolEnv/etc. |
| 17 | */ |
| 18 | export function getToolEnv(): Record<string, string> { |
| 19 | return getFixedToolEnvForCopilotMutation({ processEnv: process.env, toolEnv: Object.assign({}, toolEnv) }); |
| 20 | } |
| 21 | |
| 22 | export function getGlobalFlutterArgs() { |
| 23 | // Return a copy so we never have to worry about a caller mutating this. |
no test coverage detected