TraverseRel traverses from a given value, assumed to be the result of TraverseAbs on some scope, to a final result for the entire split traversal.
(val cty.Value)
| 191 | // TraverseRel traverses from a given value, assumed to be the result of |
| 192 | // TraverseAbs on some scope, to a final result for the entire split traversal. |
| 193 | func (t TraversalSplit) TraverseRel(val cty.Value) (cty.Value, Diagnostics) { |
| 194 | return t.Rel.TraverseRel(val) |
| 195 | } |
| 196 | |
| 197 | // Traverse is a convenience function to apply TraverseAbs followed by |
| 198 | // TraverseRel. |