// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_OBJECTS_PROPERTY_H_ #define V8_OBJECTS_PROPERTY_H_ #include <iosfwd> #include "src/common/globals.h" #include "src/handles/handles.h" #include "src/handles/maybe-handles.h" #include "src/objects/name.h" #include "src/objects/objects.h" #include "src/objects/property-details.h" namespace v8 { namespace internal { // Abstraction for elements in instance-descriptor arrays. // // Each descriptor has a key, property attributes, property type, // property index (in the actual instance-descriptor array) and // optionally a piece of data. class V8_EXPORT_PRIVATE Descriptor final { … }; } // namespace internal } // namespace v8 #endif // V8_OBJECTS_PROPERTY_H_