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

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

Issue 2193793002: Put Scopes into temporary Zone (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased 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/context-variable-assignments.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 7bde0a721bf8f3c4f07bdbbb4c3ac55229652c35..10c36aa917582687057a5d836ffad0f9ea1f441c 100644
--- a/src/parsing/parser-base.h
+++ b/src/parsing/parser-base.h
@@ -472,7 +472,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;
}
@@ -1245,6 +1249,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>
@@ -1638,8 +1644,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/context-variable-assignments.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698