Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index 308e866e9a4723b32aea710f4a3f1a74c8bc2599..408b6573c4204e071b4483520afc96b411cd275a 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -392,10 +392,8 @@ class Factory V8_FINAL { |
// Create a JSArray with a specified length and elements initialized |
// according to the specified mode. |
Handle<JSArray> NewJSArray( |
- ElementsKind elements_kind, |
- int length, |
- int capacity, |
- ArrayStorageAllocationMode mode = INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE, |
+ ElementsKind elements_kind, int length, int capacity, |
+ ArrayStorageAllocationMode mode = DONT_INITIALIZE_ARRAY_ELEMENTS, |
Igor Sheludko
2014/07/25 12:42:49
Before handlification clients used to call Heap::A
|
PretenureFlag pretenure = NOT_TENURED); |
Handle<JSArray> NewJSArray( |