package q5 const ( XOT_SIMPLE = 0 XOT_ARRAY = iota XOT_OBJECT = iota ) type XObject struct { _type int8 _val interface{} } func (this *XObject) AsXValue() *XValue { return nil }