Changeset 47620 in webkit for trunk/JavaScriptCore/runtime/JSActivation.cpp
- Timestamp:
- Aug 20, 2009, 9:21:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSActivation.cpp
r47412 r47620 58 58 return; 59 59 60 size_t numParametersMinusThis = d()->functionExecutable-> generatedBytecode().m_numParameters - 1;60 size_t numParametersMinusThis = d()->functionExecutable->parameterCount(); 61 61 62 62 size_t count = numParametersMinusThis; 63 63 markStack.appendValues(registerArray, count); 64 64 65 size_t numVars = d()->functionExecutable-> generatedBytecode().m_numVars;65 size_t numVars = d()->functionExecutable->variableCount(); 66 66 67 67 // Skip the call frame, which sits between the parameters and vars.
Note:
See TracChangeset
for help on using the changeset viewer.