Changeset 26682 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Oct 16, 2007, 2:35:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r26676 r26682 325 325 void DeclaredFunctionImp::processVarDecls(ExecState* exec) 326 326 { 327 body->processVarDecls(exec);327 body->processDeclarations(exec); 328 328 } 329 329 … … 839 839 840 840 // execute the code 841 progNode->process VarDecls(&newExec);841 progNode->processDeclarations(&newExec); 842 842 Completion c = progNode->execute(&newExec); 843 843
Note:
See TracChangeset
for help on using the changeset viewer.