mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
721 B
31 lines
721 B
8 years ago
|
// Copyright 2017 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
|
||
|
|
||
|
namespace v8 {
|
||
|
namespace internal {
|
||
|
|
||
|
template <typename T>
|
||
|
class FlagScope {
|
||
|
public:
|
||
|
FlagScope(T* flag, T new_value) : flag_(flag), previous_value_(*flag) {
|
||
|
*flag = new_value;
|
||
|
}
|
||
|
~FlagScope() { *flag_ = previous_value_; }
|
||
|
|
||
|
private:
|
||
|
T* flag_;
|
||
|
T previous_value_;
|
||
|
};
|
||
|
|
||
|
#define EXPERIMENTAL_FLAG_SCOPE(flag) \
|
||
|
FlagScope<bool> __scope_##__LINE__(&FLAG_experimental_wasm_##flag, true)
|
||
|
|
||
|
} // namespace internal
|
||
|
} // namespace v8
|
||
|
|
||
|
#endif // V8_TEST_COMMON_FLAG_UTILS_H
|