(ctx context.Context, resolver variable.Resolver, preparedConfig map[string]interface{}, log log.Logger)
| 121 | } |
| 122 | |
| 123 | func fillVariablesExcludeAndParse(ctx context.Context, resolver variable.Resolver, preparedConfig map[string]interface{}, log log.Logger) (*latest.Config, map[string]interface{}, error) { |
| 124 | return fillVariablesAndParse(ctx, resolver, preparedConfig, log, runtime.Locations...) |
| 125 | } |
| 126 | |
| 127 | func fillVariablesAndParse(ctx context.Context, resolver variable.Resolver, preparedConfig map[string]interface{}, log log.Logger, excludedPaths ...string) (*latest.Config, map[string]interface{}, error) { |
| 128 | // fill in variables and expressions |
no test coverage detected