chromium/v8/src/heap/read-only-promotion.h

// Copyright 2023 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_HEAP_READ_ONLY_PROMOTION_H_
#define V8_HEAP_READ_ONLY_PROMOTION_H_

#include "src/common/assert-scope.h"
#include "src/common/globals.h"

namespace v8 {
namespace internal {

class Isolate;
class SafepointScope;

class ReadOnlyPromotion final : public AllStatic {};

}  // namespace internal
}  // namespace v8

#endif  // V8_HEAP_READ_ONLY_PROMOTION_H_