// Copyright 2018 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_DEBUG_DEBUG_PROPERTY_ITERATOR_H_ #define V8_DEBUG_DEBUG_PROPERTY_ITERATOR_H_ #include "include/v8-local-handle.h" #include "include/v8-maybe.h" #include "include/v8-object.h" #include "src/debug/debug-interface.h" #include "src/execution/isolate.h" #include "src/handles/handles.h" #include "src/objects/prototype.h" namespace v8 { class Name; namespace internal { class JSReceiver; class DebugPropertyIterator final : public debug::PropertyIterator { … }; } // namespace internal } // namespace v8 #endif // V8_DEBUG_DEBUG_PROPERTY_ITERATOR_H_