/*
 * Iterate over arguments to a method
 *
 *   method.each { |arg| ... }
 */

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

	irmo_method_foreach_argument(method, 
				     method_each_arg_each, 
				     NULL);

	return Qnil;
}