Feature #11647 ยป 0001-include-ruby-ruby.h-struct-RObject-hide-iv_index_tbl.patch
include/ruby/ruby.h | ||
---|---|---|
struct {
|
||
long numiv; /* only uses 32-bits */
|
||
VALUE *ivptr;
|
||
struct st_table *iv_index_tbl; /* shortcut for RCLASS_IV_INDEX_TBL(rb_obj_class(obj)) */
|
||
void *iv_index_tbl; /* shortcut for RCLASS_IV_INDEX_TBL(rb_obj_class(obj)) */
|
||
} heap;
|
||
VALUE ary[ROBJECT_EMBED_LEN_MAX];
|
||
} as;
|
||
-
|