| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index 2d7c899d541d04ea0c71128dc630e2407aba4eba..d4155398c4e1b286df5efede23bf9ff36f7debb4 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -645,13 +645,14 @@ class Parser : public ParserBase {
|
| Statement* body);
|
|
|
| ZoneList<Expression*>* ParseArguments(bool* ok);
|
| - FunctionLiteral* ParseFunctionLiteral(Handle<String> var_name,
|
| - bool name_is_reserved,
|
| - bool is_generator,
|
| - int function_token_position,
|
| - FunctionLiteral::FunctionType type,
|
| - bool* ok);
|
| -
|
| + FunctionLiteral* ParseFunctionLiteral(
|
| + Handle<String> var_name,
|
| + Scanner::Location function_name_location,
|
| + bool name_is_reserved,
|
| + bool is_generator,
|
| + int function_token_position,
|
| + FunctionLiteral::FunctionType type,
|
| + bool* ok);
|
|
|
| // Magical syntax support.
|
| Expression* ParseV8Intrinsic(bool* ok);
|
|
|