From 8dced4d2c0f284bd17a3cb4a4fbed6d459cc71e0 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 8 Mar 2015 21:22:43 +0000 Subject: * internal.h: define rb_cref_t and change to use it. rb_cref_t is data type of CREF. Now, the body is still NODE. It is easy to understand what is CREF and what is pure NODE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- insns.def | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'insns.def') diff --git a/insns.def b/insns.def index 761d1fc5eb..7cfd2ee521 100644 --- a/insns.def +++ b/insns.def @@ -159,8 +159,7 @@ getclassvariable () (VALUE val) { - NODE *cref = rb_vm_get_cref(GET_EP()); - val = rb_cvar_get(vm_get_cvar_base(cref, GET_CFP()), id); + val = rb_cvar_get(vm_get_cvar_base(rb_vm_get_cref(GET_EP()), GET_CFP()), id); } /** @@ -174,8 +173,7 @@ setclassvariable (VALUE val) () { - NODE *cref = rb_vm_get_cref(GET_EP()); - rb_cvar_set(vm_get_cvar_base(cref, GET_CFP()), id, val); + rb_cvar_set(vm_get_cvar_base(rb_vm_get_cref(GET_EP()), GET_CFP()), id, val); } /** @@ -738,7 +736,7 @@ defined } break; case DEFINED_CVAR: { - NODE *cref = rb_vm_get_cref(GET_EP()); + const rb_cref_t *cref = rb_vm_get_cref(GET_EP()); klass = vm_get_cvar_base(cref, GET_CFP()); if (rb_cvar_defined(klass, SYM2ID(obj))) { expr_type = DEFINED_CVAR; -- cgit v1.2.3