зеркало из https://github.com/github/ruby.git
make a func static.
* vm.c (rb_proc_create_from_captured): make this func static and renmae with vm_ prefix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
aaa43037c2
Коммит
d4a69bb48e
6
vm.c
6
vm.c
|
@ -804,8 +804,8 @@ rb_iseq_local_variables(const rb_iseq_t *iseq)
|
|||
|
||||
/* Proc */
|
||||
|
||||
VALUE
|
||||
rb_proc_create_from_captured(VALUE klass,
|
||||
static VALUE
|
||||
vm_proc_create_from_captured(VALUE klass,
|
||||
const struct rb_captured_block *captured,
|
||||
enum rb_block_type block_type,
|
||||
int8_t safe_level, int8_t is_from_method, int8_t is_lambda)
|
||||
|
@ -878,7 +878,7 @@ rb_vm_make_proc_lambda(const rb_execution_context_t *ec, const struct rb_capture
|
|||
VM_ASSERT(imemo_type_p(captured->code.val, imemo_iseq) ||
|
||||
imemo_type_p(captured->code.val, imemo_ifunc));
|
||||
|
||||
procval = rb_proc_create_from_captured(klass, captured,
|
||||
procval = vm_proc_create_from_captured(klass, captured,
|
||||
imemo_type(captured->code.val) == imemo_iseq ? block_type_iseq : block_type_ifunc,
|
||||
(int8_t)ec->safe_level, FALSE, is_lambda);
|
||||
return procval;
|
||||
|
|
Загрузка…
Ссылка в новой задаче