rum-goggles/v1/vendor/github.com/robertkrimen/otto/value_kind.gen.go

32 lines
908 B
Go
Raw Permalink Normal View History

2024-04-04 14:46:14 +00:00
// Code generated by "stringer -type=valueKind -trimprefix=value -output=value_kind.gen.go"; DO NOT EDIT.
package otto
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[valueUndefined-0]
_ = x[valueNull-1]
_ = x[valueNumber-2]
_ = x[valueString-3]
_ = x[valueBoolean-4]
_ = x[valueObject-5]
_ = x[valueEmpty-6]
_ = x[valueResult-7]
_ = x[valueReference-8]
}
const _valueKind_name = "UndefinedNullNumberStringBooleanObjectEmptyResultReference"
var _valueKind_index = [...]uint8{0, 9, 13, 19, 25, 32, 38, 43, 49, 58}
func (i valueKind) String() string {
if i < 0 || i >= valueKind(len(_valueKind_index)-1) {
return "valueKind(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _valueKind_name[_valueKind_index[i]:_valueKind_index[i+1]]
}