Index: src/parsing/parser.cc |
diff --git a/src/parsing/parser.cc b/src/parsing/parser.cc |
index 7e4086283f91e0873a92d1a21e2762f2c7bf4858..bb11b5918a3db3db7818ca70eec9cb8b8311c06e 100644 |
--- a/src/parsing/parser.cc |
+++ b/src/parsing/parser.cc |
@@ -3024,10 +3024,10 @@ FunctionLiteral* Parser::ParseFunctionLiteral( |
// eagerly. |
if (is_lazily_parsed) { |
Scanner::BookmarkScope bookmark(scanner()); |
- bool may_abort = bookmark.Set(); |
+ bookmark.Set(); |
LazyParsingResult result = |
SkipLazyFunctionBody(&materialized_literal_count, |
- &expected_property_count, may_abort, CHECK_OK); |
+ &expected_property_count, true, CHECK_OK); |
materialized_literal_count += formals.materialized_literals_count + |
function_state.materialized_literal_count(); |