Changeset 212665 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Feb 20, 2017, 12:30:43 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r212618 r212665 1 1 /* 2 * Copyright (C) 2008-201 7Apple Inc. All rights reserved.2 * Copyright (C) 2008-2010, 2012-2016 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2008 Cameron Zwarich <[email protected]> 4 4 * … … 1006 1006 } 1007 1007 1008 CallFrameClosure Interpreter::prepareForRepeatCall(FunctionExecutable* functionExecutable, CallFrame* callFrame, ProtoCallFrame* protoCallFrame, JSFunction* function, int argumentCountIncludingThis, JSScope* scope, const ArgList&args)1008 CallFrameClosure Interpreter::prepareForRepeatCall(FunctionExecutable* functionExecutable, CallFrame* callFrame, ProtoCallFrame* protoCallFrame, JSFunction* function, int argumentCountIncludingThis, JSScope* scope, JSValue* args) 1009 1009 { 1010 1010 VM& vm = *scope->vm(); … … 1026 1026 size_t argsCount = argumentCountIncludingThis; 1027 1027 1028 protoCallFrame->init(newCodeBlock, function, jsUndefined(), argsCount, args .data());1028 protoCallFrame->init(newCodeBlock, function, jsUndefined(), argsCount, args); 1029 1029 // Return the successful closure: 1030 1030 CallFrameClosure result = { callFrame, protoCallFrame, function, functionExecutable, &vm, scope, newCodeBlock->numParameters(), argumentCountIncludingThis };
Note:
See TracChangeset
for help on using the changeset viewer.