Changeset 48662 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
- Timestamp:
- Sep 22, 2009, 5:40:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r47775 r48662 418 418 unsigned addRegExp(RegExp*); 419 419 420 PassRefPtr<FunctionExecutable> makeFunction(FunctionBodyNode* body) 421 { 422 return FunctionExecutable::create(body->ident(), body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine()); 420 PassRefPtr<FunctionExecutable> makeFunction(ExecState* exec, FunctionBodyNode* body) 421 { 422 return FunctionExecutable::create(exec, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine()); 423 } 424 425 PassRefPtr<FunctionExecutable> makeFunction(JSGlobalData* globalData, FunctionBodyNode* body) 426 { 427 return FunctionExecutable::create(globalData, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine()); 423 428 } 424 429
Note:
See TracChangeset
for help on using the changeset viewer.