Changeset 187531 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Jul 28, 2015, 5:55:17 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r187515 r187531 244 244 WriteBarrier<Structure> m_regExpMatchesArrayStructure; 245 245 WriteBarrier<Structure> m_promiseStructure; 246 #if ENABLE(WEBASSEMBLY) 247 WriteBarrier<Structure> m_wasmModuleStructure; 248 #endif 246 249 247 250 #define DEFINE_STORAGE_FOR_SIMPLE_TYPE(capitalName, lowerName, properName, instanceType, jsName) \ … … 476 479 Structure* regExpMatchesArrayStructure() const { return m_regExpMatchesArrayStructure.get(); } 477 480 Structure* promiseStructure() const { return m_promiseStructure.get(); } 481 #if ENABLE(WEBASSEMBLY) 482 Structure* wasmModuleStructure() const { return m_wasmModuleStructure.get(); } 483 #endif 478 484 479 485 JS_EXPORT_PRIVATE void setRemoteDebuggingEnabled(bool);
Note:
See TracChangeset
for help on using the changeset viewer.