Index: src/heap.h |
=================================================================== |
--- src/heap.h (revision 572) |
+++ src/heap.h (working copy) |
@@ -741,6 +741,9 @@ |
return amount_of_external_allocated_memory_; |
} |
+ // Allocate unitialized fixed array (pretenure == NON_TENURE). |
+ static Object* AllocateRawFixedArray(int length); |
+ |
private: |
static int semispace_size_; |
static int initial_semispace_size_; |
@@ -835,9 +838,6 @@ |
// (since both AllocateRaw and AllocateRawMap are inlined). |
static inline Object* AllocateRawMap(int size_in_bytes); |
- // Allocate unitialized fixed array (pretenure == NON_TENURE). |
- static Object* AllocateRawFixedArray(int length); |
- |
// Initializes a JSObject based on its map. |
static void InitializeJSObjectFromMap(JSObject* obj, |
FixedArray* properties, |