(schema *hcl.BodySchema)
| 40 | } |
| 41 | |
| 42 | func (w deepWrapper) Content(schema *hcl.BodySchema) (*hcl.BodyContent, hcl.Diagnostics) { |
| 43 | content, diags := w.Transformed.Content(schema) |
| 44 | content = w.transformContent(content) |
| 45 | return content, diags |
| 46 | } |
| 47 | |
| 48 | func (w deepWrapper) PartialContent(schema *hcl.BodySchema) (*hcl.BodyContent, hcl.Body, hcl.Diagnostics) { |
| 49 | content, remain, diags := w.Transformed.PartialContent(schema) |
nothing calls this directly
no test coverage detected