| Index: src/property-details.h
|
| diff --git a/src/property-details.h b/src/property-details.h
|
| index 6140e0d4bb5003ce16cbe19aca09a1c4866800ae..6a84c448c3226adc21e5ed156f7d0d0515f7c044 100644
|
| --- a/src/property-details.h
|
| +++ b/src/property-details.h
|
| @@ -43,22 +43,22 @@ class TypeInfo;
|
| // Type of properties.
|
| // Order of kinds is significant.
|
| // Must fit in the BitField PropertyDetails::KindField.
|
| -enum PropertyKind { DATA = 0, ACCESSOR = 1 };
|
| +enum PropertyKind { kData = 0, kAccessor = 1 };
|
|
|
|
|
| // Order of modes is significant.
|
| // Must fit in the BitField PropertyDetails::StoreModeField.
|
| -enum PropertyLocation { IN_OBJECT = 0, IN_DESCRIPTOR = 1 };
|
| +enum PropertyLocation { kField = 0, kDescriptor = 1 };
|
|
|
|
|
| // Order of properties is significant.
|
| // Must fit in the BitField PropertyDetails::TypeField.
|
| // A copy of this is in mirror-debugger.js.
|
| enum PropertyType {
|
| - FIELD = (IN_OBJECT << 1) | DATA,
|
| - CONSTANT = (IN_DESCRIPTOR << 1) | DATA,
|
| - ACCESSOR_FIELD = (IN_OBJECT << 1) | ACCESSOR,
|
| - CALLBACKS = (IN_DESCRIPTOR << 1) | ACCESSOR
|
| + DATA = (kField << 1) | kData,
|
| + DATA_CONSTANT = (kDescriptor << 1) | kData,
|
| + ACCESSOR = (kField << 1) | kAccessor,
|
| + ACCESSOR_CONSTANT = (kDescriptor << 1) | kAccessor
|
| };
|
|
|
|
|
|
|