// Copyright 2021 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. #include <cmath> #include <memory> #include <string> #include "src/bigint/bigint-internal.h" #include "src/bigint/util.h" namespace v8 { namespace bigint { namespace test { int PrintHelp(char** argv) { … } #define TESTS(V) … enum Operation { … }; enum Test { … }; class RNG { … }; static constexpr int kCharsPerDigit = …; static const char kConversionChars[] = …; std::string FormatHex(Digits X) { … } class Runner { … }; } // namespace test } // namespace bigint } // namespace v8 int main(int argc, char** argv) { … }