diff options
author | Jean Boussier <[email protected]> | 2025-06-16 10:31:21 +0200 |
---|---|---|
committer | Jean Boussier <[email protected]> | 2025-06-17 15:28:05 +0200 |
commit | fb68721f63a7f56c646ed1e6ff1beac1fc1844a4 () | |
tree | 7c7763a39337b6c87d2b15a957073a6de476a5aa /vm_insnhelper.c | |
parent | 4cb0205f51c1c49270027c41f539e8d120a13b6c (diff) |
Rename `imemo_class_fields` -> `imemo_fields`
Notes: Merged: https://.com/ruby/ruby/pull/13626
-rw-r--r-- | vm_insnhelper.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1252,8 +1252,8 @@ vm_getivar(VALUE obj, ID id, const rb_iseq_t *iseq, IVC ic, const struct rb_call if (!fields_obj) { return default_value; } - ivar_list = rb_imemo_class_fields_ptr(fields_obj); - shape_id = fields_obj ? RBASIC_SHAPE_ID_FOR_READ(fields_obj) : ROOT_SHAPE_ID; break; } @@ -1325,7 +1325,7 @@ vm_getivar(VALUE obj, ID id, const rb_iseq_t *iseq, IVC ic, const struct rb_call switch (BUILTIN_TYPE(obj)) { case T_CLASS: case T_MODULE: - table = rb_imemo_class_fields_complex_tbl(fields_obj); break; case T_OBJECT: |