mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
21cd5595e2
golang/tools commit 23ca8a263 changed the format of the leading comment to comply with some new standards discussed here: https://golang.org/issue/13560 This is the result of running generate with the latest version of stringer. Everyone working on Terraform will need to update stringer after this is merged, to avoid reverting this: go get -u golang.org/x/tools/cmd/stringer
17 lines
554 B
Go
17 lines
554 B
Go
// Code generated by "stringer -type=walkOperation graph_walk_operation.go"; DO NOT EDIT.
|
|
|
|
package terraform
|
|
|
|
import "fmt"
|
|
|
|
const _walkOperation_name = "walkInvalidwalkInputwalkApplywalkPlanwalkPlanDestroywalkRefreshwalkValidatewalkDestroywalkImport"
|
|
|
|
var _walkOperation_index = [...]uint8{0, 11, 20, 29, 37, 52, 63, 75, 86, 96}
|
|
|
|
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]]
|
|
}
|