Flowdock
dup() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
binding_dup(VALUE self)
{
    VALUE bindval = rb_binding_alloc(rb_cBinding);
    rb_binding_t *src, *dst;
    GetBindingPtr(self, src);
    GetBindingPtr(bindval, dst);
    dst->block = src->block;
    dst->path = src->path;
    dst->first_lineno = src->first_lineno;
    return bindval;
}
Register or log in to add new notes.