Changeset 167813 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.cpp
- Timestamp:
- Apr 25, 2014, 11:51:20 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.cpp
r167313 r167813 486 486 for (size_t i = 0; i < functionDeclarations.size(); ++i) { 487 487 UnlinkedFunctionExecutable* unlinkedFunctionExecutable = functionDeclarations[i].second.get(); 488 JSValue value = JSFunction::create(vm, unlinkedFunctionExecutable->link(vm, m_source, lineNo() , 0), scope);488 JSValue value = JSFunction::create(vm, unlinkedFunctionExecutable->link(vm, m_source, lineNo()), scope); 489 489 globalObject->addFunction(callFrame, functionDeclarations[i].first, value); 490 490 }
Note:
See TracChangeset
for help on using the changeset viewer.