Changeset 172372 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- Timestamp:
- Aug 8, 2014, 11:50:19 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r172129 r172372 46 46 #include "DatePrototype.h" 47 47 #include "Debugger.h" 48 #include "DebuggerScope.h"49 48 #include "Error.h" 50 49 #include "ErrorConstructor.h" … … 322 321 m_activationStructure.set(vm, this, JSActivation::createStructure(vm, this, jsNull())); 323 322 m_strictEvalActivationStructure.set(vm, this, StrictEvalActivation::createStructure(vm, this, jsNull())); 324 m_debuggerScopeStructure.set(m_vm, this, DebuggerScope::createStructure(m_vm, this, jsNull()));325 323 m_withScopeStructure.set(vm, this, JSWithScope::createStructure(vm, this, jsNull())); 326 324 … … 665 663 #endif 666 664 667 visitor.append(&thisObject->m_debuggerScopeStructure);668 665 visitor.append(&thisObject->m_withScopeStructure); 669 666 visitor.append(&thisObject->m_strictEvalActivationStructure);
Note:
See TracChangeset
for help on using the changeset viewer.