Changeset 77151 in webkit for trunk/Source/JavaScriptCore/runtime/GlobalEvalFunction.cpp
- Timestamp:
- Jan 31, 2011, 12:07:21 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/GlobalEvalFunction.cpp
r77113 r77151 35 35 GlobalEvalFunction::GlobalEvalFunction(ExecState* exec, JSGlobalObject* globalObject, NonNullPassRefPtr<Structure> structure, int len, const Identifier& name, NativeFunction function, JSGlobalObject* cachedGlobalObject) 36 36 : PrototypeFunction(exec, globalObject, structure, len, name, function) 37 , m_cachedGlobalObject( cachedGlobalObject)37 , m_cachedGlobalObject(exec->globalData(), this, cachedGlobalObject) 38 38 { 39 39 ASSERT_ARG(cachedGlobalObject, cachedGlobalObject); … … 43 43 { 44 44 PrototypeFunction::markChildren(markStack); 45 markStack.append( m_cachedGlobalObject);45 markStack.append(&m_cachedGlobalObject); 46 46 } 47 47
Note:
See TracChangeset
for help on using the changeset viewer.