// 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_FIELD_INDEX_H_ #define V8_OBJECTS_FIELD_INDEX_H_ // TODO(jkummerow): Consider forward-declaring instead. #include "src/objects/internal-index.h" #include "src/objects/property-details.h" #include "src/utils/utils.h" namespace v8 { namespace internal { class Map; // Wrapper class to hold a field index, usually but not necessarily generated // from a property index. When available, the wrapper class captures additional // information to allow the field index to be translated back into the property // index it was originally generated from. class FieldIndex final { … }; } // namespace internal } // namespace v8 #endif // V8_OBJECTS_FIELD_INDEX_H_