Method: Ractor::MovedObject#instance_eval
- Defined in:
- ractor.c
#instance_eval(*args) ⇒ Object
1938 1939 1940 1941 1942 |
# File 'ractor.c', line 1938
static VALUE
ractor_moved_missing(int argc, VALUE *argv, VALUE self)
{
rb_raise(rb_eRactorMovedError, "can not send any methods to a moved object");
}
|