| Index: src/layout-descriptor.h
|
| diff --git a/src/layout-descriptor.h b/src/layout-descriptor.h
|
| index b68decfa418cf7af344bb823b7e965a6c27453a6..0a14f53198f5c4fd48dd78b28d4b33d5d8792526 100644
|
| --- a/src/layout-descriptor.h
|
| +++ b/src/layout-descriptor.h
|
| @@ -22,7 +22,7 @@
|
| // of the descriptor then the field is also considered tagged.
|
| // Once a layout descriptor is created it is allowed only to append properties
|
| // to it.
|
| -class LayoutDescriptor : public JSTypedArray {
|
| +class LayoutDescriptor : public FixedTypedArray<Uint32ArrayTraits> {
|
| public:
|
| V8_INLINE bool IsTagged(int field_index);
|
|
|
| @@ -88,9 +88,6 @@
|
|
|
| // Capacity of layout descriptors in bits.
|
| V8_INLINE int capacity();
|
| -
|
| - V8_INLINE uint32_t get_scalar(int index);
|
| - V8_INLINE void set(int index, uint32_t value);
|
|
|
| static Handle<LayoutDescriptor> NewForTesting(Isolate* isolate, int length);
|
| LayoutDescriptor* SetTaggedForTesting(int field_index, bool tagged);
|
|
|