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