(name, fieldName string, outputs []string)
| 202 | } |
| 203 | |
| 204 | func (c *configAST) appendOutputs(name, fieldName string, outputs []string) { |
| 205 | if len(outputs) == 0 { |
| 206 | return |
| 207 | } |
| 208 | |
| 209 | c.appendStringSliceField(name, fieldName, outputs) |
| 210 | } |
| 211 | |
| 212 | func (c *configAST) appendAllowInsecure(name, fieldName string, whitelist []string) { |
| 213 | if len(whitelist) == 0 { |
no test coverage detected