| Index: src/parsing/preparser.cc
|
| diff --git a/src/parsing/preparser.cc b/src/parsing/preparser.cc
|
| index 8717d3bb277009bbfade492f139efb6656030303..b0cba7c8885d558e35b0b1fa937fb4ba8932a266 100644
|
| --- a/src/parsing/preparser.cc
|
| +++ b/src/parsing/preparser.cc
|
| @@ -295,10 +295,10 @@ PreParser::LazyParsingResult PreParser::ParseStatementListAndLogFunction(
|
| DCHECK_EQ(Token::RBRACE, scanner()->peek());
|
| int body_end = scanner()->peek_location().end_pos;
|
| DCHECK_EQ(this->scope()->is_function_scope(), formals->is_simple);
|
| - log_.LogFunction(
|
| - body_end, formals->num_parameters(), formals->function_length,
|
| - has_duplicate_parameters, function_state_->materialized_literal_count(),
|
| - function_state_->expected_property_count(), GetLastFunctionLiteralId());
|
| + log_.LogFunction(body_end, formals->num_parameters(),
|
| + formals->function_length, has_duplicate_parameters,
|
| + function_state_->expected_property_count(),
|
| + GetLastFunctionLiteralId());
|
| return kLazyParsingComplete;
|
| }
|
|
|
|
|