Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Unified Diff: src/parsing/parser.cc

Issue 2341323002: Simplify Scanner bookmarking. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/parsing/parser-base.h » ('j') | src/parsing/scanner.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | src/parsing/parser-base.h » ('j') | src/parsing/scanner.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698