| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index 73177ea0a778380d81a8c446227ad84bd4d5016d..6e95b1786e85e6d091334fd319cf8db93b8172f1 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -359,6 +359,27 @@ namespace internal {
|
| F(ArrayBufferGetByteLength, 1, 1)\
|
| F(ArrayBufferSliceImpl, 3, 1) \
|
| \
|
| + F(DataViewInitialize, 4, 1) \
|
| + F(DataViewGetBuffer, 1, 1) \
|
| + F(DataViewGetByteLength, 1, 1) \
|
| + F(DataViewGetByteOffset, 1, 1) \
|
| + F(DataViewGetInt8, 2, 1) \
|
| + F(DataViewGetUint8, 2, 1) \
|
| + F(DataViewGetInt16, 3, 1) \
|
| + F(DataViewGetUint16, 3, 1) \
|
| + F(DataViewGetInt32, 3, 1) \
|
| + F(DataViewGetUint32, 3, 1) \
|
| + F(DataViewGetFloat32, 3, 1) \
|
| + F(DataViewGetFloat64, 3, 1) \
|
| + F(DataViewSetInt8, 3, 1) \
|
| + F(DataViewSetUint8, 3, 1) \
|
| + F(DataViewSetInt16, 4, 1) \
|
| + F(DataViewSetUint16, 4, 1) \
|
| + F(DataViewSetInt32, 4, 1) \
|
| + F(DataViewSetUint32, 4, 1) \
|
| + F(DataViewSetFloat32, 4, 1) \
|
| + F(DataViewSetFloat64, 4, 1) \
|
| + \
|
| F(TypedArrayInitialize, 5, 1) \
|
| F(TypedArrayGetBuffer, 1, 1) \
|
| F(TypedArrayGetByteLength, 1, 1) \
|
|
|