/* 
 * Get the name of a method
 */

static VALUE method_get_name(VALUE self)
{
	IrmoMethod *method = unwrap_method(self);

	return rb_str_new2(irmo_method_get_name(method));
}