(name, fieldName string, platforms []string)
| 194 | } |
| 195 | |
| 196 | func (c *configAST) appendPlatforms(name, fieldName string, platforms []string) { |
| 197 | if len(platforms) == 0 { |
| 198 | return |
| 199 | } |
| 200 | |
| 201 | c.appendStringSliceField(name, fieldName, platforms) |
| 202 | } |
| 203 | |
| 204 | func (c *configAST) appendOutputs(name, fieldName string, outputs []string) { |
| 205 | if len(outputs) == 0 { |
no test coverage detected