Changeset 48662 in webkit for trunk/JavaScriptCore/runtime/Executable.cpp
- Timestamp:
- Sep 22, 2009, 5:40:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Executable.cpp
r47775 r48662 260 260 FunctionBodyNode* body = static_cast<FuncExprNode*>(funcExpr)->body(); 261 261 ASSERT(body); 262 return FunctionExecutable::create( functionName, body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine());262 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine()); 263 263 } 264 264
Note:
See TracChangeset
for help on using the changeset viewer.