// Copyright 2016 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. #if !V8_ENABLE_WEBASSEMBLY #error This header should only be included if WebAssembly is enabled. #endif // !V8_ENABLE_WEBASSEMBLY #ifndef V8_WASM_LEB_HELPER_H_ #define V8_WASM_LEB_HELPER_H_ #include <cstddef> #include <cstdint> namespace v8 { namespace internal { namespace wasm { constexpr size_t kPaddedVarInt32Size = …; constexpr size_t kMaxVarInt32Size = …; constexpr size_t kMaxVarInt64Size = …; class LEBHelper { … }; } // namespace wasm } // namespace internal } // namespace v8 #endif // V8_WASM_LEB_HELPER_H_