2eb253764f
Also: - Refactor the ValueSerializer tests using raw data, so that we test all valid versions for each test (not only one hard-coded one) - Mark some tests as backwards compatibility tests, to make it less likely that somebody updates them not realizing they are backwards compatibility tests. Bug: v8:11111, v8:12532 Change-Id: I670849de07742c8d442249ef4f013781e4ee9255 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3386802 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Commit-Queue: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/main@{#78681}
25 lines
648 B
C++
25 lines
648 B
C++
// 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.
|
|
|
|
/**
|
|
* Compile-time constants.
|
|
*
|
|
* This header provides access to information about the value serializer at
|
|
* compile time, without declaring or defining any symbols that require linking
|
|
* to V8.
|
|
*/
|
|
|
|
#ifndef INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_
|
|
#define INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace v8 {
|
|
|
|
constexpr uint32_t CurrentValueSerializerFormatVersion() { return 14; }
|
|
|
|
} // namespace v8
|
|
|
|
#endif // INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_
|