(ctx context.Context, originalRawConfig map[string]interface{}, rawConfig map[string]interface{}, resolver variable.Resolver, log log.Logger)
| 113 | type eagerParser struct{} |
| 114 | |
| 115 | func (e *eagerParser) Parse(ctx context.Context, originalRawConfig map[string]interface{}, rawConfig map[string]interface{}, resolver variable.Resolver, log log.Logger) (*latest.Config, map[string]interface{}, error) { |
| 116 | return fillAllVariablesAndParse(ctx, resolver, rawConfig, log) |
| 117 | } |
| 118 | |
| 119 | func fillAllVariablesAndParse(ctx context.Context, resolver variable.Resolver, preparedConfig map[string]interface{}, log log.Logger) (*latest.Config, map[string]interface{}, error) { |
| 120 | return fillVariablesAndParse(ctx, resolver, preparedConfig, log) |
nothing calls this directly
no test coverage detected