(reference: string, context: ResolutionContext)
| 10 | } |
| 11 | |
| 12 | resolve(reference: string, context: ResolutionContext): any { |
| 13 | const varName = extractEnvVarName(reference) |
| 14 | |
| 15 | const value = context.executionContext.environmentVariables?.[varName] |
| 16 | if (value === undefined) { |
| 17 | return reference |
| 18 | } |
| 19 | return value |
| 20 | } |
| 21 | } |
nothing calls this directly
no test coverage detected