-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* eval.c (rb_mod_public_method_defined, etc.): new methods:
public_method_defined?, private_method_defined?, protected_method_defined? * object.c (rb_obj_public_methods): new method Object#public_methods. * class.c (ins_methods_i): Object#methods should list both public and protected methods. * class.c (rb_class_public_instance_methods): new method Module#public_instance_methods. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Oct 30, 2002
1 parent
a2868ff
commit ed18815
Showing
6 changed files
with
124 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
Wed Oct 30 17:00:47 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_mod_public_method_defined, etc.): new methods: | ||
public_method_defined?, private_method_defined?, | ||
protected_method_defined? | ||
|
||
* object.c (rb_obj_public_methods): new method | ||
Object#public_methods. | ||
|
||
* class.c (ins_methods_i): Object#methods should list both public | ||
and protected methods. | ||
|
||
* class.c (rb_class_public_instance_methods): new method | ||
Module#public_instance_methods. | ||
|
||
Wed Oct 30 06:29:00 2002 Akinori MUSHA <[email protected]> | ||
|
||
* eval.c, file.c, gc.c, io.c, object.c, ruby.c, ruby.h, struct.c, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters