Index: src/liveedit.h |
diff --git a/src/liveedit.h b/src/liveedit.h |
index 6534b7e378f153593eca4273ece50201caa81459..65fe1a61c7ee7cd552dc6da3d9aeb7a953febfd6 100644 |
--- a/src/liveedit.h |
+++ b/src/liveedit.h |
@@ -282,7 +282,6 @@ class FunctionInfoWrapper : public JSArrayBasedStruct<FunctionInfoWrapper> { |
void SetInitialProperties(Handle<String> name, int start_position, |
int end_position, int param_num, int literal_count, |
- int slot_count, int ic_slot_count, |
int parent_index); |
void SetFunctionCode(Handle<Code> function_code, |
@@ -304,7 +303,7 @@ class FunctionInfoWrapper : public JSArrayBasedStruct<FunctionInfoWrapper> { |
Handle<Code> GetFunctionCode(); |
- Handle<TypeFeedbackVector> GetFeedbackVector(); |
+ MaybeHandle<TypeFeedbackVector> GetFeedbackVector(); |
Handle<Object> GetCodeScopeInfo(); |
@@ -314,12 +313,6 @@ class FunctionInfoWrapper : public JSArrayBasedStruct<FunctionInfoWrapper> { |
int GetEndPosition() { return this->GetSmiValueField(kEndPositionOffset_); } |
- int GetSlotCount() { |
- return this->GetSmiValueField(kSlotNumOffset_); |
- } |
- |
- int GetICSlotCount() { return this->GetSmiValueField(kICSlotNumOffset_); } |
- |
private: |
static const int kFunctionNameOffset_ = 0; |
static const int kStartPositionOffset_ = 1; |
@@ -331,9 +324,7 @@ class FunctionInfoWrapper : public JSArrayBasedStruct<FunctionInfoWrapper> { |
static const int kParentIndexOffset_ = 7; |
static const int kSharedFunctionInfoOffset_ = 8; |
static const int kLiteralNumOffset_ = 9; |
- static const int kSlotNumOffset_ = 10; |
- static const int kICSlotNumOffset_ = 11; |
- static const int kSize_ = 12; |
+ static const int kSize_ = 10; |
friend class JSArrayBasedStruct<FunctionInfoWrapper>; |
}; |