Changeset 47775 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
- Timestamp:
- Aug 26, 2009, 12:46:47 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r47738 r47775 420 420 PassRefPtr<FunctionExecutable> makeFunction(FunctionBodyNode* body) 421 421 { 422 return adoptRef(new FunctionExecutable(body->ident(), body->source(), body->usesArguments(), body->copyParameters(), body->parameterCount(), body->lineNo(), body->lastLine()));422 return FunctionExecutable::create(body->ident(), body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine()); 423 423 } 424 424
Note:
See TracChangeset
for help on using the changeset viewer.