Changeset 196950 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Feb 22, 2016, 12:07:50 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r196722 r196950 294 294 struct TypedArrayData { 295 295 WriteBarrier<JSObject> prototype; 296 WriteBarrier<InternalFunction> constructor; 296 297 WriteBarrier<Structure> structure; 297 298 }; … … 582 583 } 583 584 585 JSObject* typedArrayConstructor(TypedArrayType type) const 586 { 587 return m_typedArrays[toIndex(type)].constructor.get(); 588 } 589 584 590 JSCell* actualPointerFor(Special::Pointer pointer) 585 591 {
Note:
See TracChangeset
for help on using the changeset viewer.