| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 // Code generated by "stringer -type=Status"; DO NOT EDIT. | 
|  | 2 | 
|  | 3 package model | 
|  | 4 | 
|  | 5 import "fmt" | 
|  | 6 | 
|  | 7 const _Status_name = "NotRunRunningSuccessFailureWarningInfraFailureExceptionExp
    iredDependencyFailureWaitingDependency" | 
|  | 8 | 
|  | 9 var _Status_index = [...]uint8{0, 6, 13, 20, 27, 34, 46, 55, 62, 79, 96} | 
|  | 10 | 
|  | 11 func (i Status) String() string { | 
|  | 12         if i < 0 || i >= Status(len(_Status_index)-1) { | 
|  | 13                 return fmt.Sprintf("Status(%d)", i) | 
|  | 14         } | 
|  | 15         return _Status_name[_Status_index[i]:_Status_index[i+1]] | 
|  | 16 } | 
| OLD | NEW | 
|---|