Index: src/ast/ast.h |
diff --git a/src/ast/ast.h b/src/ast/ast.h |
index 1b80d3f36d951a3f1b71ecbabd650d8ce0d6af56..c66055e2952c4d6a993ed0bc36d0db65c450b4f1 100644 |
--- a/src/ast/ast.h |
+++ b/src/ast/ast.h |
@@ -718,13 +718,14 @@ class ForInStatement final : public ForEachStatement { |
ForInType for_in_type() const { return for_in_type_; } |
void set_for_in_type(ForInType type) { for_in_type_ = type; } |
- static int num_ids() { return parent_num_ids() + 6; } |
+ static int num_ids() { return parent_num_ids() + 7; } |
BailoutId BodyId() const { return BailoutId(local_id(0)); } |
BailoutId EnumId() const { return BailoutId(local_id(1)); } |
BailoutId ToObjectId() const { return BailoutId(local_id(2)); } |
BailoutId PrepareId() const { return BailoutId(local_id(3)); } |
BailoutId FilterId() const { return BailoutId(local_id(4)); } |
BailoutId AssignmentId() const { return BailoutId(local_id(5)); } |
+ BailoutId IncrementId() const { return BailoutId(local_id(6)); } |
BailoutId ContinueId() const { return EntryId(); } |
BailoutId StackCheckId() const { return BodyId(); } |