| 1286 | } |
| 1287 | |
| 1288 | type BuildParser struct { |
| 1289 | Builders []*template.Builder |
| 1290 | WithAnnotations bool |
| 1291 | |
| 1292 | provisioners BlockParser |
| 1293 | postProcessors BlockParser |
| 1294 | out []byte |
| 1295 | } |
| 1296 | |
| 1297 | func (p *BuildParser) Parse(tpl *template.Template) error { |
| 1298 | if len(p.Builders) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected