Changeset 34587 in webkit for trunk/JavaScriptCore/VM/Machine.cpp
- Timestamp:
- Jun 15, 2008, 10:28:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.cpp
r34582 r34587 685 685 } 686 686 687 JSValue* Machine::execute(FunctionBodyNode* functionBodyNode, ExecState* exec, JSFunction* function, JSObject* thisObj, const List& args, RegisterFileStack* registerFileStack, ScopeChainNode* scopeChain, JSValue** exception)687 JSValue* Machine::execute(FunctionBodyNode* functionBodyNode, ExecState* exec, JSFunction* function, JSObject* thisObj, const ArgList& args, RegisterFileStack* registerFileStack, ScopeChainNode* scopeChain, JSValue** exception) 688 688 { 689 689 if (m_reentryDepth >= MaxReentryDepth) { … … 712 712 (*dst).u.jsValue = thisObj; 713 713 714 List::const_iterator end = args.end();715 for ( List::const_iterator it = args.begin(); it != end; ++it)714 ArgList::const_iterator end = args.end(); 715 for (ArgList::const_iterator it = args.begin(); it != end; ++it) 716 716 (*++dst).u.jsValue = *it; 717 717 … … 2115 2115 JSObject* thisObj = static_cast<JSObject*>(r[firstArg].u.jsValue); 2116 2116 2117 List args(reinterpret_cast<JSValue***>(registerBase), registerOffset + firstArg + 1, argCount - 1);2117 ArgList args(reinterpret_cast<JSValue***>(registerBase), registerOffset + firstArg + 1, argCount - 1); 2118 2118 2119 2119 registerFile->setSafeForReentry(true); … … 2252 2252 int registerOffset = r - (*registerBase); 2253 2253 2254 List args(reinterpret_cast<JSValue***>(registerBase), registerOffset + firstArg + 1, argCount - 1);2254 ArgList args(reinterpret_cast<JSValue***>(registerBase), registerOffset + firstArg + 1, argCount - 1); 2255 2255 2256 2256 registerFile->setSafeForReentry(true);
Note:
See TracChangeset
for help on using the changeset viewer.