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

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

Issue 2373443003: Revert of Preparse inner functions (new try) (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 | « src/parsing/parser.cc ('k') | src/parsing/preparser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/parser-base.h
diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h
index 5b21c539f2470b049c91106fb4ba9ec4b50d20e4..47d96d2ddbd1af14486c3cfee884e016f244c06d 100644
--- a/src/parsing/parser-base.h
+++ b/src/parsing/parser-base.h
@@ -3915,17 +3915,13 @@
// Multiple statement body
Consume(Token::LBRACE);
DCHECK_EQ(scope(), formal_parameters.scope);
- bool is_lazily_parsed =
- (mode() == PARSE_LAZILY &&
- formal_parameters.scope
- ->AllowsLazyParsingWithoutUnresolvedVariables());
- // TODO(marja): consider lazy-parsing inner arrow functions too. is_this
- // handling in Scope::ResolveVariable needs to change.
+ bool is_lazily_parsed = (mode() == PARSE_LAZILY &&
+ formal_parameters.scope->AllowsLazyParsing());
if (is_lazily_parsed) {
Scanner::BookmarkScope bookmark(scanner());
bookmark.Set();
LazyParsingResult result = impl()->SkipLazyFunctionBody(
- &materialized_literal_count, &expected_property_count, false, true,
+ &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/preparser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698