github.com/pulumi/terraform@v1.4.0/pkg/terraform/phasestate_string.go (about)

     1  // Code generated by "stringer -type phaseState"; DO NOT EDIT.
     2  
     3  package terraform
     4  
     5  import "strconv"
     6  
     7  func _() {
     8  	// An "invalid array index" compiler error signifies that the constant values have changed.
     9  	// Re-run the stringer command to generate them again.
    10  	var x [1]struct{}
    11  	_ = x[workingState-0]
    12  	_ = x[refreshState-1]
    13  	_ = x[prevRunState-2]
    14  }
    15  
    16  const _phaseState_name = "workingStaterefreshStateprevRunState"
    17  
    18  var _phaseState_index = [...]uint8{0, 12, 24, 36}
    19  
    20  func (i phaseState) String() string {
    21  	if i < 0 || i >= phaseState(len(_phaseState_index)-1) {
    22  		return "phaseState(" + strconv.FormatInt(int64(i), 10) + ")"
    23  	}
    24  	return _phaseState_name[_phaseState_index[i]:_phaseState_index[i+1]]
    25  }