| Index: src/interpreter/bytecode-array-builder.h | 
| diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h | 
| index 3930a06e1b6f64e60bd6718916a5ccb152195f93..68a2f3bc62488f0b8b5c6da628781763e5065dcc 100644 | 
| --- a/src/interpreter/bytecode-array-builder.h | 
| +++ b/src/interpreter/bytecode-array-builder.h | 
| @@ -262,6 +262,9 @@ class BytecodeArrayBuilder final : public ZoneObject { | 
| void SetExpressionPosition(Expression* expr); | 
| void SetExpressionAsStatementPosition(Expression* expr); | 
|  | 
| +  // Set position for return. | 
| +  void SetReturnPosition(); | 
| + | 
| // Accessors | 
| TemporaryRegisterAllocator* temporary_register_allocator() { | 
| return &temporary_allocator_; | 
| @@ -326,9 +329,6 @@ class BytecodeArrayBuilder final : public ZoneObject { | 
| // Attach latest source position to |node|. | 
| void AttachSourceInfo(BytecodeNode* node); | 
|  | 
| -  // Set position for return. | 
| -  void SetReturnPosition(); | 
| - | 
| // Gets a constant pool entry for the |object|. | 
| size_t GetConstantPoolEntry(Handle<Object> object); | 
|  | 
|  |