mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add ec
as first parameter.
* vm.c (vm_svar_get): accepts `ec` as first parameter. * vm.c (vm_svar_set): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60787 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c761514c76
commit
ea665dcd8c
1 changed files with 6 additions and 8 deletions
14
vm.c
14
vm.c
|
@ -1214,41 +1214,39 @@ vm_cfp_svar_set(const rb_execution_context_t *ec, rb_control_frame_t *cfp, VALUE
|
|||
}
|
||||
|
||||
static VALUE
|
||||
vm_svar_get(VALUE key)
|
||||
vm_svar_get(const rb_execution_context_t *ec, VALUE key)
|
||||
{
|
||||
const rb_execution_context_t *ec = GET_EC();
|
||||
return vm_cfp_svar_get(ec, ec->cfp, key);
|
||||
}
|
||||
|
||||
static void
|
||||
vm_svar_set(VALUE key, VALUE val)
|
||||
vm_svar_set(const rb_execution_context_t *ec, VALUE key, VALUE val)
|
||||
{
|
||||
const rb_execution_context_t *ec = GET_EC();
|
||||
vm_cfp_svar_set(ec, ec->cfp, key, val);
|
||||
}
|
||||
|
||||
VALUE
|
||||
rb_backref_get(void)
|
||||
{
|
||||
return vm_svar_get(VM_SVAR_BACKREF);
|
||||
return vm_svar_get(GET_EC(), VM_SVAR_BACKREF);
|
||||
}
|
||||
|
||||
void
|
||||
rb_backref_set(VALUE val)
|
||||
{
|
||||
vm_svar_set(VM_SVAR_BACKREF, val);
|
||||
vm_svar_set(GET_EC(), VM_SVAR_BACKREF, val);
|
||||
}
|
||||
|
||||
VALUE
|
||||
rb_lastline_get(void)
|
||||
{
|
||||
return vm_svar_get(VM_SVAR_LASTLINE);
|
||||
return vm_svar_get(GET_EC(), VM_SVAR_LASTLINE);
|
||||
}
|
||||
|
||||
void
|
||||
rb_lastline_set(VALUE val)
|
||||
{
|
||||
vm_svar_set(VM_SVAR_LASTLINE, val);
|
||||
vm_svar_set(GET_EC(), VM_SVAR_LASTLINE, val);
|
||||
}
|
||||
|
||||
/* misc */
|
||||
|
|
Loading…
Reference in a new issue