| Index: src/interpreter/bytecode-array-builder.h
 | 
| diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h
 | 
| index 0a8cbe5181224aeb4b8f17f89928fb426da3eafb..a1d8e03428fc4741c35ce512619ef83d53f15d2d 100644
 | 
| --- a/src/interpreter/bytecode-array-builder.h
 | 
| +++ b/src/interpreter/bytecode-array-builder.h
 | 
| @@ -121,6 +121,13 @@ class V8_EXPORT_PRIVATE BytecodeArrayBuilder final
 | 
|    // Keyed load property. The key should be in the accumulator.
 | 
|    BytecodeArrayBuilder& LoadKeyedProperty(Register object, int feedback_slot);
 | 
|  
 | 
| +  // Store properties. Flag for NeedsSetFunctionName() should
 | 
| +  // be in the accumulator.
 | 
| +  BytecodeArrayBuilder& StoreDataPropertyInLiteral(Register object,
 | 
| +                                                   Register name,
 | 
| +                                                   Register value,
 | 
| +                                                   Register attrs);
 | 
| +
 | 
|    // Store properties. The value to be stored should be in the accumulator.
 | 
|    BytecodeArrayBuilder& StoreNamedProperty(Register object,
 | 
|                                             const Handle<Name> name,
 | 
| 
 |