Changeset 191291 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Oct 19, 2015, 9:20:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r191191 r191291 2204 2204 2205 2205 #if ENABLE(WEBASSEMBLY) 2206 CodeBlock::CodeBlock(VM* vm, Structure* structure, WebAssemblyExecutable* ownerExecutable, VM& vm,JSGlobalObject* globalObject)2207 : JSCell( vm, structure)2206 CodeBlock::CodeBlock(VM* vm, Structure* structure, WebAssemblyExecutable* ownerExecutable, JSGlobalObject* globalObject) 2207 : JSCell(*vm, structure) 2208 2208 , m_globalObject(globalObject->vm(), this, globalObject) 2209 2209 , m_heap(&m_globalObject->vm().heap) … … 2218 2218 , m_numBreakpoints(0) 2219 2219 , m_ownerExecutable(m_globalObject->vm(), this, ownerExecutable) 2220 , m_vm( &vm)2220 , m_vm(vm) 2221 2221 , m_isStrictMode(false) 2222 2222 , m_needsActivation(false)
Note:
See TracChangeset
for help on using the changeset viewer.