| Index: src/preparser.cc
|
| diff --git a/src/preparser.cc b/src/preparser.cc
|
| index 9e72422eb7deb1c28f824ac86937068d2eb5ddbe..76698ac8556cd4730c5e213aa2505710160a6f55 100644
|
| --- a/src/preparser.cc
|
| +++ b/src/preparser.cc
|
| @@ -953,9 +953,10 @@ void PreParser::ParseLazyFunctionLiteralBody(bool* ok) {
|
| // Position right after terminal '}'.
|
| DCHECK_EQ(Token::RBRACE, scanner()->peek());
|
| int body_end = scanner()->peek_location().end_pos;
|
| - log_->LogFunction(
|
| - body_start, body_end, function_state_->materialized_literal_count(),
|
| - function_state_->expected_property_count(), language_mode());
|
| + log_->LogFunction(body_start, body_end,
|
| + function_state_->materialized_literal_count(),
|
| + function_state_->expected_property_count(), language_mode(),
|
| + scope_->uses_super_property());
|
| }
|
|
|
|
|
|
|