| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 8ef7f20231f5e5a0d77bae8321462db95affe69e..73367d94983b9029de808531eb353fc88927f5c9 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -5077,12 +5077,16 @@ class FixedTypedArrayBase: public FixedArrayBase {
|
|
|
| inline int size();
|
|
|
| + inline int TypedArraySize(InstanceType type);
|
| +
|
| // Use with care: returns raw pointer into heap.
|
| inline void* DataPtr();
|
|
|
| inline int DataSize();
|
|
|
| private:
|
| + inline int DataSize(InstanceType type);
|
| +
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(FixedTypedArrayBase);
|
| };
|
|
|
|
|