neo-go/pkg/core/transaction/witness_scope_string.go

43 lines
1,015 B
Go
Raw Normal View History

// Code generated by "stringer -type=WitnessScope -output=witness_scope_string.go"; DO NOT EDIT.
package transaction
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[None-0]
_ = x[CalledByEntry-1]
_ = x[CustomContracts-16]
_ = x[CustomGroups-32]
2020-07-29 16:41:15 +00:00
_ = x[Global-128]
}
const (
_WitnessScope_name_0 = "NoneCalledByEntry"
_WitnessScope_name_1 = "CustomContracts"
_WitnessScope_name_2 = "CustomGroups"
2020-07-29 16:41:15 +00:00
_WitnessScope_name_3 = "Global"
)
var (
_WitnessScope_index_0 = [...]uint8{0, 4, 17}
)
func (i WitnessScope) String() string {
switch {
case i <= 1:
return _WitnessScope_name_0[_WitnessScope_index_0[i]:_WitnessScope_index_0[i+1]]
case i == 16:
return _WitnessScope_name_1
case i == 32:
return _WitnessScope_name_2
2020-07-29 16:41:15 +00:00
case i == 128:
return _WitnessScope_name_3
default:
return "WitnessScope(" + strconv.FormatInt(int64(i), 10) + ")"
}
}