Changeset 37257 in webkit for trunk/JavaScriptCore/kjs/JSFunction.cpp
- Timestamp:
- Oct 3, 2008, 2:39:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSFunction.cpp
r37184 r37257 46 46 47 47 JSFunction::JSFunction(ExecState* exec, const Identifier& name, FunctionBodyNode* body, ScopeChainNode* scopeChainNode) 48 : Base( exec, exec->lexicalGlobalObject()->functionStructure(), name)48 : Base(&exec->globalData(), exec->lexicalGlobalObject()->functionStructure(), name) 49 49 , m_body(body) 50 50 , m_scopeChain(scopeChainNode)
Note:
See TracChangeset
for help on using the changeset viewer.