// Copyright 2020 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_TEST_COMMON_FLAG_UTILS_H #define V8_TEST_COMMON_FLAG_UTILS_H #include "src/base/macros.h" #include "src/flags/flags.h" namespace v8 { namespace internal { template <typename T> class V8_NODISCARD FlagScope { … }; } // namespace internal } // namespace v8 #define FLAG_VALUE_SCOPE(flag, value) … #define FLAG_SCOPE(flag) … #endif // V8_TEST_COMMON_FLAG_UTILS_H