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

Unified Diff: src/parsing/parser.cc

Issue 2347883002: Remove legacy API on Utf16CharacterStream. (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') | no next file with comments »
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 77173a40d70d4da11112647817391631715776ee..b4432f48ddf219c93236f9f4a78a623c22f8ffda 100644
--- a/src/parsing/parser.cc
+++ b/src/parsing/parser.cc
@@ -3120,10 +3120,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698