mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
The Go team uses automation to generate unnecessary version bumps across all of these that make it impossible to upgrade them individually because they all mutually depend on the latest versions of each other, so unfortunately we have to accept the risk of updating all of these at once in order to update any one of them. Signed-off-by: Martin Atkins <mart@degeneration.co.uk>
32 lines
931 B
Go
32 lines
931 B
Go
// Code generated by "stringer -type=walkOperation graph_walk_operation.go"; DO NOT EDIT.
|
|
|
|
package tofu
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[walkInvalid-0]
|
|
_ = x[walkApply-1]
|
|
_ = x[walkPlan-2]
|
|
_ = x[walkPlanDestroy-3]
|
|
_ = x[walkValidate-4]
|
|
_ = x[walkDestroy-5]
|
|
_ = x[walkImport-6]
|
|
_ = x[walkEval-7]
|
|
}
|
|
|
|
const _walkOperation_name = "walkInvalidwalkApplywalkPlanwalkPlanDestroywalkValidatewalkDestroywalkImportwalkEval"
|
|
|
|
var _walkOperation_index = [...]uint8{0, 11, 20, 28, 43, 55, 66, 76, 84}
|
|
|
|
func (i walkOperation) String() string {
|
|
idx := int(i) - 0
|
|
if i < 0 || idx >= len(_walkOperation_index)-1 {
|
|
return "walkOperation(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _walkOperation_name[_walkOperation_index[idx]:_walkOperation_index[idx+1]]
|
|
}
|