(model Model, cfg config.ConfigInterface, sec string, key string)
| 50 | var requiredSections = []string{"r", "p", "e", "m"} |
| 51 | |
| 52 | func loadAssertion(model Model, cfg config.ConfigInterface, sec string, key string) bool { |
| 53 | value := cfg.String(sectionNameMap[sec] + "::" + key) |
| 54 | return model.AddDef(sec, key, value) |
| 55 | } |
| 56 | |
| 57 | var paramsRegex = regexp.MustCompile(`\((.*?)\)`) |
| 58 |
no test coverage detected
searching dependent graphs…