| Index: src/ast/ast.h
|
| diff --git a/src/ast/ast.h b/src/ast/ast.h
|
| index d17edc78b7831c27cf6ff08510af4f1ba78d8979..1a3087adf034aa03c60f221df643d4c7f9fd8020 100644
|
| --- a/src/ast/ast.h
|
| +++ b/src/ast/ast.h
|
| @@ -1848,11 +1848,9 @@ class Call final : public Expression {
|
| allocation_site_ = site;
|
| }
|
|
|
| - static int num_ids() { return parent_num_ids() + 4; }
|
| + static int num_ids() { return parent_num_ids() + 2; }
|
| 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)); }
|
| + BailoutId CallId() const { return BailoutId(local_id(1)); }
|
|
|
| bool is_uninitialized() const {
|
| return IsUninitializedField::decode(bit_field_);
|
|
|