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

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

Issue 2210243002: Put Scopes into temporary Zone (second try) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: adding comment Created 4 years, 4 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') | test/mjsunit/eagerly-parsed-lazily-compiled-functions.js » ('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 ec6e63404f3437768b66512ca5cc89ed37ad48c1..134c576b6cb6e35ac4e6d46230d8050ec15ea8a3 100644
--- a/src/parsing/parser-base.h
+++ b/src/parsing/parser-base.h
@@ -464,7 +464,11 @@ class ParserBase : public Traits {
return &non_patterns_to_rewrite_;
}
- void next_function_is_parenthesized(bool parenthesized) {
+ bool next_function_is_parenthesized() const {
+ return next_function_is_parenthesized_;
+ }
+
+ void set_next_function_is_parenthesized(bool parenthesized) {
next_function_is_parenthesized_ = parenthesized;
}
@@ -1237,6 +1241,8 @@ class ParserBase : public Traits {
bool allow_harmony_async_await_;
bool allow_harmony_restrictive_generators_;
bool allow_harmony_trailing_commas_;
+
+ friend class DiscardableZoneScope;
};
template <class Traits>
@@ -1630,8 +1636,8 @@ ParserBase<Traits>::ParsePrimaryExpression(ExpressionClassifier* classifier,
}
// Heuristically try to detect immediately called functions before
// seeing the call parentheses.
- function_state_->next_function_is_parenthesized(peek() ==
- Token::FUNCTION);
+ function_state_->set_next_function_is_parenthesized(peek() ==
+ Token::FUNCTION);
ExpressionT expr = this->ParseExpression(true, classifier, CHECK_OK);
Expect(Token::RPAREN, CHECK_OK);
return expr;
« no previous file with comments | « src/parsing/parser.cc ('k') | test/mjsunit/eagerly-parsed-lazily-compiled-functions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698