aboutsummaryrefslogtreecommitdiff
path: root/object/objecttype_string.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/objecttype_string.go')
-rw-r--r--object/objecttype_string.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/object/objecttype_string.go b/object/objecttype_string.go
new file mode 100644
index 0000000..80d3ee6
--- /dev/null
+++ b/object/objecttype_string.go
@@ -0,0 +1,16 @@
+// Code generated by "stringer -type=ObjectType"; DO NOT EDIT.
+
+package object
+
+import "strconv"
+
+const _ObjectType_name = "NULLERRORINTEGERBOOLEANSTRINGRETURN_VALUEFUNCTIONBUILTINARRAYHASHQUOTEMACRO"
+
+var _ObjectType_index = [...]uint8{0, 4, 9, 16, 23, 29, 41, 49, 56, 61, 65, 70, 75}
+
+func (i ObjectType) String() string {
+ if i < 0 || i >= ObjectType(len(_ObjectType_index)-1) {
+ return "ObjectType(" + strconv.FormatInt(int64(i), 10) + ")"
+ }
+ return _ObjectType_name[_ObjectType_index[i]:_ObjectType_index[i+1]]
+}