mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
f4c03ec2a6
As of November 8th 2015, (4b07c5ce8a), the word "Code" is prepended to the comments in Go source files generated by the stringer utility.
17 lines
539 B
Go
17 lines
539 B
Go
// Code generated by "stringer -type=walkOperation graph_walk_operation.go"; DO NOT EDIT
|
|
|
|
package terraform
|
|
|
|
import "fmt"
|
|
|
|
const _walkOperation_name = "walkInvalidwalkInputwalkApplywalkPlanwalkPlanDestroywalkRefreshwalkValidatewalkDestroy"
|
|
|
|
var _walkOperation_index = [...]uint8{0, 11, 20, 29, 37, 52, 63, 75, 86}
|
|
|
|
func (i walkOperation) String() string {
|
|
if i >= walkOperation(len(_walkOperation_index)-1) {
|
|
return fmt.Sprintf("walkOperation(%d)", i)
|
|
}
|
|
return _walkOperation_name[_walkOperation_index[i]:_walkOperation_index[i+1]]
|
|
}
|