Changeset 59800 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- May 19, 2010, 6:01:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r59791 r59800 4425 4425 } 4426 4426 4427 JSValue Interpreter::retrieveCaller(CallFrame* callFrame, InternalFunction* function) const4427 JSValue Interpreter::retrieveCaller(CallFrame* callFrame, JSFunction* function) const 4428 4428 { 4429 4429 CallFrame* functionCallFrame = findFunctionCallFrame(callFrame, function); … … 4463 4463 } 4464 4464 4465 CallFrame* Interpreter::findFunctionCallFrame(CallFrame* callFrame, InternalFunction* function)4465 CallFrame* Interpreter::findFunctionCallFrame(CallFrame* callFrame, JSFunction* function) 4466 4466 { 4467 4467 for (CallFrame* candidate = callFrame; candidate; candidate = candidate->callerFrame()->removeHostCallFrameFlag()) {
Note:
See TracChangeset
for help on using the changeset viewer.