Chromium Code Reviews| Index: src/parser.h |
| diff --git a/src/parser.h b/src/parser.h |
| index d618b45f7d758afb7224cddbaec517d09d343d37..9a8288926c8c545d0a489de4b415b11b5b3224f6 100644 |
| --- a/src/parser.h |
| +++ b/src/parser.h |
| @@ -192,20 +192,8 @@ bool ParseRegExp(FlatStringReader* input, |
| RegExpCompileData* result); |
| -// Support for doing lazy compilation. The script is the script containing full |
| -// source of the script where the function is declared. The start_position and |
|
Lasse Reichstein
2010/09/30 09:11:41
Thank you for removing this sentence. :)
|
| -// end_position specifies the part of the script source which has the source |
| -// for the function declaration in the form: |
| -// |
| -// (<formal parameters>) { <function body> } |
| -// |
| -// without any function keyword or name. |
| -// |
| -FunctionLiteral* MakeLazyAST(Handle<Script> script, |
| - Handle<String> name, |
| - int start_position, |
| - int end_position, |
| - bool is_expression); |
| +// Support for doing lazy compilation. |
| +FunctionLiteral* MakeLazyAST(Handle<SharedFunctionInfo> info); |
| // Support for handling complex values (array and object literals) that |