Changeset 26808 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Oct 19, 2007, 10:18:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r26715 r26808 77 77 78 78 passInParameters(&newExec, args); 79 processVarDecls(&newExec);80 79 81 80 Debugger* dbg = exec->dynamicInterpreter()->debugger(); … … 270 269 return result; 271 270 return Completion(Normal, jsUndefined()); // TODO: or ReturnValue ? 272 }273 274 void FunctionImp::processVarDecls(ExecState* exec)275 {276 body->processDeclarations(exec);277 271 } 278 272 … … 782 776 } 783 777 784 // execute the code785 progNode->processDeclarations(&newExec);786 778 Completion c = progNode->execute(&newExec); 787 779
Note:
See TracChangeset
for help on using the changeset viewer.