| Index: src/factory.h
|
| diff --git a/src/factory.h b/src/factory.h
|
| index bbc5de9f2347f97d3c5586b5ea68cb028e852879..a525fd1e4b56853a9dcf25605a2383e68e8dad94 100644
|
| --- a/src/factory.h
|
| +++ b/src/factory.h
|
| @@ -600,8 +600,6 @@ class Factory V8_FINAL {
|
| return Handle<String>(&isolate()->heap()->hidden_string_);
|
| }
|
|
|
| - Handle<FixedArray> NewTypeFeedbackVector(int slot_count);
|
| -
|
| // Allocates a new SharedFunctionInfo object.
|
| Handle<SharedFunctionInfo> NewSharedFunctionInfo(
|
| Handle<String> name,
|
| @@ -612,6 +610,9 @@ class Factory V8_FINAL {
|
| Handle<FixedArray> feedback_vector);
|
| Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name);
|
|
|
| + // Allocate a new type feedback vector
|
| + Handle<FixedArray> NewTypeFeedbackVector(int slot_count);
|
| +
|
| // Allocates a new JSMessageObject object.
|
| Handle<JSMessageObject> NewJSMessageObject(
|
| Handle<String> type,
|
|
|