()
| 261 | } |
| 262 | |
| 263 | func (b *expandBody) JustAttributes() (hcl.Attributes, hcl.Diagnostics) { |
| 264 | // blocks aren't allowed in JustAttributes mode and this body can |
| 265 | // only produce blocks, so we'll just pass straight through to our |
| 266 | // underlying body here. |
| 267 | return b.original.JustAttributes() |
| 268 | } |
| 269 | |
| 270 | func (b *expandBody) MissingItemRange() hcl.Range { |
| 271 | return b.original.MissingItemRange() |
nothing calls this directly
no test coverage detected