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 --- proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index b11ffa693c..d45d8a3209 100644 --- a/proc.c +++ b/proc.c @@ -14,7 +14,7 @@ #include "gc.h" #include "iseq.h" -const NODE *rb_vm_cref_in_context(VALUE self, VALUE cbase); +const rb_cref_t *rb_vm_cref_in_context(VALUE self, VALUE cbase); struct METHOD { VALUE recv; @@ -1639,7 +1639,7 @@ rb_mod_define_method(int argc, VALUE *argv, VALUE mod) ID id; VALUE body; int noex = NOEX_PUBLIC; - const NODE *cref = rb_vm_cref_in_context(mod, mod); + const rb_cref_t *cref = rb_vm_cref_in_context(mod, mod); if (cref) { noex = CREF_VISI(cref); @@ -2167,7 +2167,7 @@ method_get_iseq(rb_method_definition_t *def) } } -static NODE * +static const rb_cref_t * method_get_cref(rb_method_definition_t *def) { switch (def->type) { -- cgit v1.2.3