diff options
author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-29 16:39:28 +0000 |
---|---|---|
committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-29 16:39:28 +0000 |
commit | 2d42e704f4b46e05943041d87fc98ca04630c843 (patch) | |
tree | 356ba4438f5cf52e314133d7b16d021ea88108bf /object.c | |
parent | d6ef893798f27a335eef884b8bff717f09936a23 (diff) | |
download | ruby-2d42e704f4b46e05943041d87fc98ca04630c843.tar.gz |
Doxy-comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23902 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -2449,7 +2449,24 @@ boot_defmetametaclass(VALUE klass, VALUE metametaclass) */ -/* +/*! + *-- + * Initializes the world of objects and classes. + * + * At first, the function bootstraps the class hierarchy. + * It initializes the most fundamental classes and their metaclasses. + * - \c BasicObject + * - \c Object + * - \c Module + * - \c Class + * After the bootstrap step, the class hierarchy becomes as the following + * diagram. + * + * \image html boottime-classes.png + * + * Then, the function defines classes, modules and methods as usual. + * \ingroup class + *++ * <code>BasicObject</code> is the parent class of all classes in Ruby. * It's an explicit blank class. <code>Object</code>, the root of Ruby's * class hierarchy is a direct subclass of <code>BasicObject</code>. Its |