A LiteralSpec is a Spec that produces the given literal value, ignoring the given body.
| 250 | // A LiteralSpec is a Spec that produces the given literal value, ignoring |
| 251 | // the given body. |
| 252 | type LiteralSpec struct { |
| 253 | Value cty.Value |
| 254 | } |
| 255 | |
| 256 | func (s *LiteralSpec) visitSameBodyChildren(cb visitFunc) { |
| 257 | // leaf node |
nothing calls this directly
no outgoing calls
no test coverage detected