Home
last modified time | relevance | path

Searched refs:pushed_by_eval (Results 1 – 3 of 3) sorted by relevance

/dports/lang/ruby26/ruby-2.6.9/
H A Dvm.c187 …method_visibility_t visi, int module_func, rb_cref_t *prev_cref, int pushed_by_eval, int use_prev_… in vm_cref_new0() argument
214 if (pushed_by_eval) CREF_PUSHED_BY_EVAL_SET(cref); in vm_cref_new0()
221 …ALUE klass, rb_method_visibility_t visi, int module_func, rb_cref_t *prev_cref, int pushed_by_eval) in vm_cref_new() argument
223 return vm_cref_new0(klass, visi, module_func, prev_cref, pushed_by_eval, FALSE); in vm_cref_new()
227 …ALUE klass, rb_method_visibility_t visi, int module_func, rb_cref_t *prev_cref, int pushed_by_eval) in vm_cref_new_use_prev() argument
229 return vm_cref_new0(klass, visi, module_func, prev_cref, pushed_by_eval, TRUE); in vm_cref_new_use_prev()
244 int pushed_by_eval = CREF_PUSHED_BY_EVAL(cref); in vm_cref_dup() local
246 new_cref = vm_cref_new(klass, visi->method_visi, visi->module_func, next_cref, pushed_by_eval); in vm_cref_dup()
H A Dvm_insnhelper.c763 vm_cref_push(const rb_execution_context_t *ec, VALUE klass, const VALUE *ep, int pushed_by_eval) in vm_cref_push() argument
778 return vm_cref_new(klass, METHOD_VISI_PUBLIC, FALSE, prev_cref, pushed_by_eval); in vm_cref_push()
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DChangeLog-2.3.02341 * vm_insnhelper.c (vm_cref_push): accept pushed_by_eval parameter.