* object.c (rb_class_superclass): rdoc improvement, a patch from
Gaston Ramos <ramos.gaston AT gmail.com> in [ruby-core:17371]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3381bd94d1
commit
fa57f78b9b
@ -1,3 +1,8 @@
|
||||
Sun Jun 22 09:51:14 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* object.c (rb_class_superclass): rdoc improvement, a patch from
|
||||
Gaston Ramos <ramos.gaston AT gmail.com> in [ruby-core:17371].
|
||||
|
||||
Sun Jun 22 09:22:32 2008 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||
|
||||
* README.EXT: translated README.EXT.ja
|
||||
|
6
object.c
6
object.c
@ -1437,6 +1437,12 @@ rb_class_new_instance(int argc, VALUE *argv, VALUE klass)
|
||||
* File.superclass #=> IO
|
||||
* IO.superclass #=> Object
|
||||
* Object.superclass #=> BasicObject
|
||||
* class Foo; end
|
||||
* class Bar < Foo; end
|
||||
* Bar.superclass #=> Foo
|
||||
*
|
||||
* returns nil when the given class hasn't a parent class:
|
||||
*
|
||||
* BasicObject.superclass #=> nil
|
||||
*
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user