Changeset 187538 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- Timestamp:
- Jul 28, 2015, 8:27:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r187531 r187538 93 93 #include "JSTypedArrayPrototypes.h" 94 94 #include "JSTypedArrays.h" 95 #include "JSWASMModule.h"96 95 #include "JSWeakMap.h" 97 96 #include "JSWeakSet.h" … … 342 341 m_promiseStructure.set(vm, this, JSPromise::createStructure(vm, this, m_promisePrototype.get())); 343 342 344 #if ENABLE(WEBASSEMBLY)345 m_wasmModuleStructure.set(vm, this, JSWASMModule::createStructure(vm, this));346 #endif347 348 343 m_parseIntFunction.set(vm, this, JSFunction::create(vm, this, 2, vm.propertyNames->parseInt.string(), globalFuncParseInt, NoIntrinsic)); 349 344 putDirectWithoutTransition(vm, vm.propertyNames->parseInt, m_parseIntFunction.get(), DontEnum | Function); … … 807 802 visitor.append(&thisObject->m_internalFunctionStructure); 808 803 visitor.append(&thisObject->m_promiseStructure); 809 #if ENABLE(WEBASSEMBLY)810 visitor.append(&thisObject->m_wasmModuleStructure);811 #endif812 804 813 805 #define VISIT_SIMPLE_TYPE(CapitalName, lowerName, properName, instanceType, jsName) \
Note:
See TracChangeset
for help on using the changeset viewer.