Changeset 154847 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Aug 29, 2013, 3:54:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r154629 r154847 184 184 WriteBarrier<Structure> m_stringObjectStructure; 185 185 WriteBarrier<Structure> m_internalFunctionStructure; 186 187 #if ENABLE(PROMISES) 186 188 WriteBarrier<Structure> m_promiseStructure; 187 189 WriteBarrier<Structure> m_promiseResolverStructure; 188 190 WriteBarrier<Structure> m_promiseCallbackStructure; 189 191 WriteBarrier<Structure> m_promiseWrapperCallbackStructure; 192 #endif // ENABLE(PROMISES) 190 193 191 194 WriteBarrier<JSArrayBufferPrototype> m_arrayBufferPrototype; … … 382 385 Structure* regExpStructure() const { return m_regExpStructure.get(); } 383 386 Structure* stringObjectStructure() const { return m_stringObjectStructure.get(); } 387 388 #if ENABLE(PROMISES) 384 389 Structure* promiseStructure() const { return m_promiseStructure.get(); } 385 390 Structure* promiseResolverStructure() const { return m_promiseResolverStructure.get(); } 386 391 Structure* promiseCallbackStructure() const { return m_promiseCallbackStructure.get(); } 387 392 Structure* promiseWrapperCallbackStructure() const { return m_promiseWrapperCallbackStructure.get(); } 393 #endif // ENABLE(PROMISES) 388 394 389 395 JSArrayBufferPrototype* arrayBufferPrototype() const { return m_arrayBufferPrototype.get(); }
Note:
See TracChangeset
for help on using the changeset viewer.