// 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_DIAGNOSTICS_CODE_TRACER_H_ #define V8_DIAGNOSTICS_CODE_TRACER_H_ #include <optional> #include "src/base/platform/platform.h" #include "src/base/platform/wrappers.h" #include "src/base/strings.h" #include "src/base/vector.h" #include "src/flags/flags.h" #include "src/utils/allocation.h" #include "src/utils/ostreams.h" #include "src/utils/utils.h" namespace v8 { namespace internal { class CodeTracer final : public Malloced { … }; } // namespace internal } // namespace v8 #endif // V8_DIAGNOSTICS_CODE_TRACER_H_