Changeset 207927 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.cpp
- Timestamp:
- Oct 26, 2016, 4:57:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.cpp
r207693 r207927 32 32 #include "JIT.h" 33 33 #include "JSCInlines.h" 34 #include "JSWasmModule.h"35 34 #include "LLIntEntrypoint.h" 36 35 #include "Parser.h" … … 748 747 const ClassInfo WebAssemblyExecutable::s_info = { "WebAssemblyExecutable", &ExecutableBase::s_info, 0, CREATE_METHOD_TABLE(WebAssemblyExecutable) }; 749 748 750 WebAssemblyExecutable::WebAssemblyExecutable(VM& vm, const SourceCode& source, JSWasmModule* module,unsigned functionIndex)749 WebAssemblyExecutable::WebAssemblyExecutable(VM& vm, const SourceCode& source, unsigned functionIndex) 751 750 : ExecutableBase(vm, vm.webAssemblyExecutableStructure.get(), NUM_PARAMETERS_NOT_COMPILED, NoIntrinsic) 752 751 , m_source(source) 753 , m_module(vm, this, module)754 752 , m_functionIndex(functionIndex) 755 753 { … … 769 767 if (thisObject->m_codeBlockForCall) 770 768 thisObject->m_codeBlockForCall->visitWeakly(visitor); 771 visitor.append(&thisObject->m_module);772 769 } 773 770 #endif
Note:
See TracChangeset
for help on using the changeset viewer.