* object.c (Init_Object): Teach RDoc what Init_class_hierarchy does to
hook up ri for BasicObject, Object, Module and Class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4a42dda482
commit
0de3c24ea2
@ -1,3 +1,8 @@
|
|||||||
|
Tue Jun 28 07:50:32 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* object.c (Init_Object): Teach RDoc what Init_class_hierarchy does to
|
||||||
|
hook up ri for BasicObject, Object, Module and Class.
|
||||||
|
|
||||||
Tue Jun 28 05:03:32 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
Tue Jun 28 05:03:32 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
|
||||||
* thread.c (rb_thread_local_aref): RDoc fix. Thread#[] example
|
* thread.c (rb_thread_local_aref): RDoc fix. Thread#[] example
|
||||||
|
35
object.c
35
object.c
@ -2553,23 +2553,24 @@ rb_f_array(VALUE obj, VALUE arg)
|
|||||||
* \ingroup class
|
* \ingroup class
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/* Document-class: BasicObject
|
||||||
*
|
*
|
||||||
* <code>BasicObject</code> is the parent class of all classes in Ruby.
|
* BasicObject is the parent class of all classes in Ruby. It's an explicit
|
||||||
* It's an explicit blank class. <code>Object</code>, the root of Ruby's
|
* blank class.
|
||||||
* class hierarchy is a direct subclass of <code>BasicObject</code>. Its
|
*/
|
||||||
* methods are therefore available to all objects unless explicitly
|
|
||||||
* overridden.
|
/* Document-class: Object
|
||||||
*
|
*
|
||||||
* <code>Object</code> mixes in the <code>Kernel</code> module, making
|
* Object is the root of Ruby's class hierarchy. Its methods are available
|
||||||
* the built-in kernel functions globally accessible. Although the
|
* to all classes unless explicitly overridden.
|
||||||
* instance methods of <code>Object</code> are defined by the
|
*
|
||||||
* <code>Kernel</code> module, we have chosen to document them here for
|
* Object mixes in the Kernel module, making the built-in kernel functions
|
||||||
* clarity.
|
* globally accessible. Although the instance methods of Object are defined
|
||||||
|
* by the Kernel module, we have chosen to document them here for clarity.
|
||||||
*
|
*
|
||||||
* In the descriptions of Object's methods, the parameter <i>symbol</i> refers
|
* In the descriptions of Object's methods, the parameter <i>symbol</i> refers
|
||||||
* to a symbol, which is either a quoted string or a
|
* to a symbol, which is either a quoted string or a Symbol (such as
|
||||||
* <code>Symbol</code> (such as <code>:name</code>).
|
* <code>:name</code>).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -2579,6 +2580,14 @@ Init_Object(void)
|
|||||||
|
|
||||||
Init_class_hierarchy();
|
Init_class_hierarchy();
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
// teach RDoc about these classes
|
||||||
|
rb_cBasicObject = rb_define_class("BasicObject", Qnil);
|
||||||
|
rb_cObject = rb_define_class("Object", rb_cBasicObject);
|
||||||
|
rb_cModule = rb_define_class("Module", rb_cObject);
|
||||||
|
rb_cClass = rb_define_class("Class", rb_cModule);
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef rb_intern
|
#undef rb_intern
|
||||||
#define rb_intern(str) rb_intern_const(str)
|
#define rb_intern(str) rb_intern_const(str)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user