Index: src/heap.h |
diff --git a/src/heap.h b/src/heap.h |
index b8110920b22de919ee7968ec22e7461d45c8e6d4..230ea6e88d164ec386115f31844aa153f2e3b3db 100644 |
--- a/src/heap.h |
+++ b/src/heap.h |
@@ -730,8 +730,8 @@ class Heap { |
ArrayStorageAllocationMode mode = DONT_INITIALIZE_ARRAY_ELEMENTS); |
// Allocate a JSArray with no elements |
- MUST_USE_RESULT MaybeObject* AllocateJSArrayWithElements( |
- FixedArrayBase* array_base, |
+ Handle<JSArray> AllocateJSArrayWithElements( |
+ Handle<FixedArrayBase> array_base, |
Yang
2014/04/07 07:20:48
We want to keep handlified code out of heap.cc. Re
Igor Sheludko
2014/04/07 09:29:17
Done.
|
ElementsKind elements_kind, |
int length, |
PretenureFlag pretenure = NOT_TENURED); |