TraverseAbs traverses from a scope to the value resulting from the absolute traversal.
(ctx *EvalContext)
| 185 | // TraverseAbs traverses from a scope to the value resulting from the |
| 186 | // absolute traversal. |
| 187 | func (t TraversalSplit) TraverseAbs(ctx *EvalContext) (cty.Value, Diagnostics) { |
| 188 | return t.Abs.TraverseAbs(ctx) |
| 189 | } |
| 190 | |
| 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. |