Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index 61a6ea936963bab05811fc36f53a4ca58bc6f308..3a3d896262b14ddb04b0f7664d895691ff94aff0 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_; |