An ExprSpec is a Spec that evaluates the given expression, ignoring the given body.
| 276 | // An ExprSpec is a Spec that evaluates the given expression, ignoring the |
| 277 | // given body. |
| 278 | type ExprSpec struct { |
| 279 | Expr hcl.Expression |
| 280 | } |
| 281 | |
| 282 | func (s *ExprSpec) visitSameBodyChildren(cb visitFunc) { |
| 283 | // leaf node |
nothing calls this directly
no outgoing calls
no test coverage detected