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

Unified Diff: src/parsing/parser-base.h

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
Index: src/parsing/parser-base.h
diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h
index e9a683488b8c0b7728b006fe882dbd01eb825985..1436bbdb1c35cc32e509b5f676a68fcd4d7c46d5 100644
--- a/src/parsing/parser-base.h
+++ b/src/parsing/parser-base.h
@@ -3893,9 +3893,9 @@ ParserBase<Impl>::ParseArrowFunctionLiteral(
formal_parameters.scope->AllowsLazyParsing());
if (is_lazily_parsed) {
Scanner::BookmarkScope bookmark(scanner());
- bool may_abort = bookmark.Set();
+ bookmark.Set();
LazyParsingResult result = impl()->SkipLazyFunctionBody(
- &materialized_literal_count, &expected_property_count, may_abort,
+ &materialized_literal_count, &expected_property_count, true,
CHECK_OK);
if (formal_parameters.materialized_literals_count > 0) {
« no previous file with comments | « src/parsing/parser.cc ('k') | src/parsing/scanner.h » ('j') | src/parsing/scanner.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698