| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index c91c3f908fcb02a713455ca99cd383670d6f5450..0fc2b72df3f91af728ba3be51ee2c340fbbee89e 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -1163,9 +1163,11 @@ RUNTIME_FUNCTION(Runtime_TypedArrayInitializeFromArrayLike) {
|
| return holder->accessor(); \
|
| }
|
|
|
| -BUFFER_VIEW_GETTER(ArrayBufferView, ByteLength, byte_length)
|
| -BUFFER_VIEW_GETTER(ArrayBufferView, ByteOffset, byte_offset)
|
| +BUFFER_VIEW_GETTER(TypedArray, ByteLength, byte_length)
|
| +BUFFER_VIEW_GETTER(TypedArray, ByteOffset, byte_offset)
|
| BUFFER_VIEW_GETTER(TypedArray, Length, length)
|
| +BUFFER_VIEW_GETTER(DataView, ByteLength, byte_length)
|
| +BUFFER_VIEW_GETTER(DataView, ByteOffset, byte_offset)
|
| BUFFER_VIEW_GETTER(DataView, Buffer, buffer)
|
|
|
| #undef BUFFER_VIEW_GETTER
|
|
|