mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19991214
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c18d3740a9
commit
9d228b13de
34 changed files with 649 additions and 508 deletions
23
intern.h
23
intern.h
|
@ -221,7 +221,7 @@ int yyparse _((void));
|
|||
ID rb_id_attrset _((ID));
|
||||
void rb_parser_append_print _((void));
|
||||
void rb_parser_while_loop _((int, int));
|
||||
int rb_is_shvar_id _((ID));
|
||||
int rb_is_const_id _((ID));
|
||||
int rb_is_instance_id _((ID));
|
||||
VALUE rb_backref_get _((void));
|
||||
void rb_backref_set _((VALUE));
|
||||
|
@ -323,17 +323,18 @@ VALUE rb_ivar_set _((VALUE, ID, VALUE));
|
|||
VALUE rb_ivar_defined _((VALUE, ID));
|
||||
VALUE rb_obj_instance_variables _((VALUE));
|
||||
VALUE rb_obj_remove_instance_variable _((VALUE, VALUE));
|
||||
VALUE rb_mod_shvar_at _((VALUE, VALUE));
|
||||
VALUE rb_mod_shvars _((VALUE));
|
||||
VALUE rb_mod_shvar_of _((VALUE, VALUE));
|
||||
VALUE rb_mod_remove_shvar _((VALUE, VALUE));
|
||||
int rb_shvar_defined_at _((VALUE, ID));
|
||||
VALUE rb_mod_const_at _((VALUE, VALUE));
|
||||
VALUE rb_mod_constants _((VALUE));
|
||||
VALUE rb_mod_const_of _((VALUE, VALUE));
|
||||
VALUE rb_mod_remove_const _((VALUE, VALUE));
|
||||
int rb_const_defined_at _((VALUE, ID));
|
||||
int rb_autoload_defined _((ID));
|
||||
int rb_shvar_defined _((VALUE, ID));
|
||||
VALUE rb_shvar_get _((VALUE, ID));
|
||||
VALUE rb_shvar_get_at _((VALUE, ID));
|
||||
void rb_shvar_set _((VALUE, ID, VALUE));
|
||||
VALUE rb_mod_shared_variables _((VALUE));
|
||||
int rb_const_defined _((VALUE, ID));
|
||||
VALUE rb_const_get _((VALUE, ID));
|
||||
VALUE rb_const_get_at _((VALUE, ID));
|
||||
void rb_const_set _((VALUE, ID, VALUE));
|
||||
VALUE rb_mod_constants _((VALUE));
|
||||
void rb_autoload_load _((ID));
|
||||
/* version.c */
|
||||
void ruby_show_version _((void));
|
||||
void ruby_show_copyright _((void));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue