| Index: src/ast.h
 | 
| diff --git a/src/ast.h b/src/ast.h
 | 
| index 4c65c7f3b83bd4cce6b6a406619a898c3ccd6477..be862715f07d7f60e96124b2d6dfeefd49fbd0ff 100644
 | 
| --- a/src/ast.h
 | 
| +++ b/src/ast.h
 | 
| @@ -2512,8 +2512,6 @@ class FunctionLiteral final : public Expression {
 | 
|    bool AllowsLazyCompilation();
 | 
|    bool AllowsLazyCompilationWithoutContext();
 | 
|  
 | 
| -  void InitializeSharedInfo(Handle<Code> code);
 | 
| -
 | 
|    Handle<String> debug_name() const {
 | 
|      if (raw_name_ != NULL && !raw_name_->IsEmpty()) {
 | 
|        return raw_name_->string();
 | 
| @@ -2548,9 +2546,6 @@ class FunctionLiteral final : public Expression {
 | 
|      inferred_name_ = Handle<String>();
 | 
|    }
 | 
|  
 | 
| -  // shared_info may be null if it's not cached in full code.
 | 
| -  Handle<SharedFunctionInfo> shared_info() { return shared_info_; }
 | 
| -
 | 
|    bool pretenure() { return Pretenure::decode(bitfield_); }
 | 
|    void set_pretenure() { bitfield_ |= Pretenure::encode(true); }
 | 
|  
 | 
| @@ -2632,7 +2627,6 @@ class FunctionLiteral final : public Expression {
 | 
|   private:
 | 
|    const AstRawString* raw_name_;
 | 
|    Handle<String> name_;
 | 
| -  Handle<SharedFunctionInfo> shared_info_;
 | 
|    Scope* scope_;
 | 
|    ZoneList<Statement*>* body_;
 | 
|    const AstString* raw_inferred_name_;
 | 
| 
 |