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

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

Issue 1914423002: [es8] Report proper syntax error for tail call expressions in for-in and for-of bodies. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@tco-fix
Patch Set: Addressing comments Created 4 years, 8 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.cc » ('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 212502052a43f63b40b0bbb572d0f1d3f0254416..d273910ced7493d818e2ddd9e9498d776a69b30a 100644
--- a/src/parsing/parser-base.h
+++ b/src/parsing/parser-base.h
@@ -198,6 +198,15 @@ class ParserBase : public Traits {
int pos;
};
+ // Defines whether tail call expressions are allowed or not.
+ enum class ReturnExprContext {
+ // Tail call expressions are allowed.
+ kNormal,
+ // Tail call expressions are not allowed.
+ kInsideTryBlock,
+ kInsideForInOfBody,
+ };
+
class FunctionState BASE_EMBEDDED {
public:
FunctionState(FunctionState** function_state_stack, Scope** scope_stack,
@@ -259,16 +268,16 @@ class ParserBase : public Traits {
return expressions_in_tail_position_;
}
void AddExpressionInTailPosition(ExpressionT expression, int pos) {
- if (collect_expressions_in_tail_position_) {
+ if (return_expr_context() == ReturnExprContext::kNormal) {
expressions_in_tail_position_.Add(TailCallExpression(expression, pos));
}
}
- bool collect_expressions_in_tail_position() const {
- return collect_expressions_in_tail_position_;
+ ReturnExprContext return_expr_context() const {
+ return return_expr_context_;
}
- void set_collect_expressions_in_tail_position(bool collect) {
- collect_expressions_in_tail_position_ = collect;
+ void set_return_expr_context(ReturnExprContext context) {
+ return_expr_context_ = context;
}
ZoneList<ExpressionT>* non_patterns_to_rewrite() {
@@ -324,7 +333,7 @@ class ParserBase : public Traits {
List<DestructuringAssignment> destructuring_assignments_to_rewrite_;
List<TailCallExpression> expressions_in_tail_position_;
- bool collect_expressions_in_tail_position_;
+ ReturnExprContext return_expr_context_;
ZoneList<ExpressionT> non_patterns_to_rewrite_;
typename Traits::Type::Factory* factory_;
@@ -342,22 +351,22 @@ class ParserBase : public Traits {
friend class Checkpoint;
};
- // This scope disables collecting of expressions at tail call position.
- class DontCollectExpressionsInTailPositionScope {
+ // This scope sets current ReturnExprContext to given value.
+ class ReturnExprScope {
public:
- explicit DontCollectExpressionsInTailPositionScope(
- FunctionState* function_state)
+ explicit ReturnExprScope(FunctionState* function_state,
+ ReturnExprContext return_expr_context)
: function_state_(function_state),
- old_value_(function_state->collect_expressions_in_tail_position()) {
- function_state->set_collect_expressions_in_tail_position(false);
+ sav_return_expr_context_(function_state->return_expr_context()) {
+ function_state->set_return_expr_context(return_expr_context);
}
- ~DontCollectExpressionsInTailPositionScope() {
- function_state_->set_collect_expressions_in_tail_position(old_value_);
+ ~ReturnExprScope() {
+ function_state_->set_return_expr_context(sav_return_expr_context_);
}
private:
FunctionState* function_state_;
- bool old_value_;
+ ReturnExprContext sav_return_expr_context_;
};
// Collects all return expressions at tail call position in this scope
@@ -633,6 +642,23 @@ class ParserBase : public Traits {
error_type);
}
+ void ReportIllegalTailCallAt(int pos, ReturnExprContext return_expr_context) {
+ Scanner::Location loc(pos, pos + 1);
+ MessageTemplate::Template msg = MessageTemplate::kNone;
+ switch (return_expr_context) {
+ case ReturnExprContext::kNormal:
+ UNREACHABLE();
+ return;
+ case ReturnExprContext::kInsideTryBlock:
+ msg = MessageTemplate::kTailCallInTryBlock;
+ break;
+ case ReturnExprContext::kInsideForInOfBody:
+ msg = MessageTemplate::kTailCallInForInOf;
+ break;
+ }
+ ReportMessageAt(loc, msg);
+ }
+
void GetUnexpectedTokenMessage(
Token::Value token, MessageTemplate::Template* message,
Scanner::Location* location, const char** arg,
@@ -990,7 +1016,7 @@ ParserBase<Traits>::FunctionState::FunctionState(
outer_function_state_(*function_state_stack),
scope_stack_(scope_stack),
outer_scope_(*scope_stack),
- collect_expressions_in_tail_position_(true),
+ return_expr_context_(ReturnExprContext::kNormal),
non_patterns_to_rewrite_(0, scope->zone()),
factory_(factory),
next_function_is_parenthesized_(false),
« no previous file with comments | « src/parsing/parser.cc ('k') | src/parsing/preparser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698