| 48 | } |
| 49 | |
| 50 | type bakeHCLDocument struct { |
| 51 | document |
| 52 | mutex sync.Mutex |
| 53 | decoder *decoder.PathDecoder |
| 54 | file *hcl.File |
| 55 | bakePrintOutput *BakePrintOutput |
| 56 | } |
| 57 | |
| 58 | func (d *bakeHCLDocument) parse(_ bool) bool { |
| 59 | d.mutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected