Bug 789589 - Fix the ABO class hierarchy comment to be accurate, r=Waldo

--HG--
extra : commitid : Fcu1U4ww7I5
extra : rebase_source : 99f28cb8527888e47d4cdd37fc04c9aeff92348f
This commit is contained in:
Steve Fink 2015-07-28 18:13:16 -07:00
Родитель 713936e41b
Коммит 5d9fc0e800
1 изменённых файлов: 10 добавлений и 9 удалений

Просмотреть файл

@ -21,23 +21,24 @@ class ArrayBufferViewObject;
// The inheritance hierarchy for the various classes relating to typed arrays // The inheritance hierarchy for the various classes relating to typed arrays
// is as follows. // is as follows.
// //
// - JSObject // - NativeObject
// - ArrayBufferObjectMaybeShared // - ArrayBufferObjectMaybeShared
// - ArrayBufferObject // - ArrayBufferObject
// - SharedArrayBufferObject // - SharedArrayBufferObject
// - ArrayBufferViewObject // - DataViewObject
// - DataViewObject // - TypedArrayObject (declared in vm/TypedArrayObject.h)
// - TypedArrayObject (declared in vm/TypedArrayObject.h) // - TypedArrayObjectTemplate
// - TypedArrayObjectTemplate // - Int8ArrayObject
// - Int8ArrayObject // - Uint8ArrayObject
// - Uint8ArrayObject // - ...
// - ...
// - TypedObject (declared in builtin/TypedObject.h)
// - SharedTypedArrayObject (declared in vm/SharedTypedArrayObject.h) // - SharedTypedArrayObject (declared in vm/SharedTypedArrayObject.h)
// - SharedTypedArrayObjectTemplate // - SharedTypedArrayObjectTemplate
// - SharedInt8ArrayObject // - SharedInt8ArrayObject
// - SharedUint8ArrayObject // - SharedUint8ArrayObject
// - ... // - ...
// - JSObject
// - ArrayBufferViewObject
// - TypedObject (declared in builtin/TypedObject.h)
// //
// Note that |TypedArrayObjectTemplate| is just an implementation // Note that |TypedArrayObjectTemplate| is just an implementation
// detail that makes implementing its various subclasses easier. // detail that makes implementing its various subclasses easier.