Changeset 38825 in webkit for trunk/JavaScriptCore/runtime/Arguments.h
- Timestamp:
- Nov 27, 2008, 6:24:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Arguments.h
r38511 r38825 107 107 function = callFrame->callee(); 108 108 109 CodeBlock* codeBlock = &function-> m_body->generatedBytecode();109 CodeBlock* codeBlock = &function->body()->generatedBytecode(); 110 110 int numParameters = codeBlock->numParameters; 111 111 argc = callFrame->argumentCount(); … … 130 130 getArgumentsData(callFrame, callee, firstParameterIndex, argv, numArguments); 131 131 132 d->numParameters = callee-> m_body->parameterCount();132 d->numParameters = callee->body()->parameterCount(); 133 133 d->firstParameterIndex = firstParameterIndex; 134 134 d->numArguments = numArguments; … … 161 161 , d(new ArgumentsData) 162 162 { 163 ASSERT(!callFrame->callee()-> m_body->parameterCount());163 ASSERT(!callFrame->callee()->body()->parameterCount()); 164 164 165 165 unsigned numArguments = callFrame->argumentCount() - 1;
Note:
See TracChangeset
for help on using the changeset viewer.