| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index e80777be419660f7bd17cc2b82dbe11597a284ed..6b693a1be6830872c185cfa3b10048ae31f5f0c7 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -1896,10 +1896,11 @@ class Call final : public Expression {
|
| allocation_site_ = site;
|
| }
|
|
|
| - static int num_ids() { return parent_num_ids() + 3; }
|
| + static int num_ids() { return parent_num_ids() + 4; }
|
| BailoutId ReturnId() const { return BailoutId(local_id(0)); }
|
| BailoutId EvalId() const { return BailoutId(local_id(1)); }
|
| BailoutId LookupId() const { return BailoutId(local_id(2)); }
|
| + BailoutId CallId() const { return BailoutId(local_id(3)); }
|
|
|
| bool is_uninitialized() const {
|
| return IsUninitializedField::decode(bit_field_);
|
|
|