| 710 | } |
| 711 | |
| 712 | type ConditionalExpr struct { |
| 713 | Condition Expression |
| 714 | TrueResult Expression |
| 715 | FalseResult Expression |
| 716 | |
| 717 | SrcRange hcl.Range |
| 718 | } |
| 719 | |
| 720 | func (e *ConditionalExpr) walkChildNodes(w internalWalkFunc) { |
| 721 | w(e.Condition) |
nothing calls this directly
no outgoing calls
no test coverage detected