rdoc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c1c101e752
commit
3f075b9ac9
1
hash.c
1
hash.c
@ -613,6 +613,7 @@ rb_hash_key(hash, value)
|
|||||||
return args[1];
|
return args[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* :nodoc: */
|
||||||
static VALUE
|
static VALUE
|
||||||
rb_hash_index(hash, value)
|
rb_hash_index(hash, value)
|
||||||
VALUE hash, value;
|
VALUE hash, value;
|
||||||
|
3
parse.y
3
parse.y
@ -8218,6 +8218,7 @@ parser_new()
|
|||||||
#ifdef RIPPER_DEBUG
|
#ifdef RIPPER_DEBUG
|
||||||
extern int rb_is_pointer_to_heap _((VALUE));
|
extern int rb_is_pointer_to_heap _((VALUE));
|
||||||
|
|
||||||
|
/* :nodoc: */
|
||||||
static VALUE
|
static VALUE
|
||||||
ripper_validate_object(self, x)
|
ripper_validate_object(self, x)
|
||||||
VALUE self, x;
|
VALUE self, x;
|
||||||
@ -8696,6 +8697,7 @@ ripper_lineno(self)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef RIPPER_DEBUG
|
#ifdef RIPPER_DEBUG
|
||||||
|
/* :nodoc: */
|
||||||
static VALUE
|
static VALUE
|
||||||
ripper_assert_Qundef(self, obj, msg)
|
ripper_assert_Qundef(self, obj, msg)
|
||||||
VALUE self, obj, msg;
|
VALUE self, obj, msg;
|
||||||
@ -8707,6 +8709,7 @@ ripper_assert_Qundef(self, obj, msg)
|
|||||||
return Qnil;
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* :nodoc: */
|
||||||
static VALUE
|
static VALUE
|
||||||
ripper_value(self, obj)
|
ripper_value(self, obj)
|
||||||
VALUE self, obj;
|
VALUE self, obj;
|
||||||
|
9
re.c
9
re.c
@ -1530,6 +1530,15 @@ rb_reg_match_pos(re, str, pos)
|
|||||||
return LONG2FIX(pos);
|
return LONG2FIX(pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* call-seq:
|
||||||
|
* rxp =~ str => integer or nil
|
||||||
|
*
|
||||||
|
* Match---Matches <i>rxp</i> against <i>str</i>.
|
||||||
|
*
|
||||||
|
* /at/ =~ "input data" #=> 7
|
||||||
|
*/
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_reg_match(re, str)
|
rb_reg_match(re, str)
|
||||||
VALUE re, str;
|
VALUE re, str;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user