| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index 17e3b43561b34383f8c4fca668654fe848ebdb51..398cb3bcc24dd1b49102c9940f4bd15129573f3f 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -361,6 +361,7 @@ namespace internal {
|
| F(ArrayBufferSliceImpl, 3, 1) \
|
| \
|
| F(TypedArrayInitialize, 5, 1) \
|
| + F(TypedArrayInitializeFromArrayLike, 4, 1) \
|
| F(TypedArrayGetBuffer, 1, 1) \
|
| F(TypedArrayGetByteLength, 1, 1) \
|
| F(TypedArrayGetByteOffset, 1, 1) \
|
| @@ -784,7 +785,8 @@ class Runtime : public AllStatic {
|
| static bool SetupArrayBufferAllocatingData(
|
| Isolate* isolate,
|
| Handle<JSArrayBuffer> array_buffer,
|
| - size_t allocated_length);
|
| + size_t allocated_length,
|
| + bool initialize = true);
|
|
|
| static void FreeArrayBuffer(
|
| Isolate* isolate,
|
|
|