Class: Method
- Inherits:
-
Object
- Object
- Method
- Defined in:
- (unknown)
Instance Method Summary collapse
Instance Method Details
#arity ⇒ Object
79 80 81 82 83 84 |
# File 'ext/appmap/appmap.c', line 79
static VALUE
am_method_arity(VALUE method)
{
VALUE orig_method_arity = rb_ivar_get(am_AppMapHook, rb_intern("@method_arity"));
return am_get_method_arity(method, orig_method_arity);
}
|