A BlockSetSpec is a Spec that produces a cty set of the results of decoding all of the nested blocks of a given type, using a nested spec.
| 709 | // A BlockSetSpec is a Spec that produces a cty set of the results of |
| 710 | // decoding all of the nested blocks of a given type, using a nested spec. |
| 711 | type BlockSetSpec struct { |
| 712 | TypeName string |
| 713 | Nested Spec |
| 714 | MinItems int |
| 715 | MaxItems int |
| 716 | } |
| 717 | |
| 718 | func (s *BlockSetSpec) visitSameBodyChildren(cb visitFunc) { |
| 719 | // leaf node ("Nested" does not use the same body) |
nothing calls this directly
no outgoing calls
no test coverage detected