chromium/v8/test/unittests/numbers/bigint-unittest.cc

// 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.

#include <cmath>

#include "src/execution/isolate.h"
#include "src/heap/factory.h"
#include "src/numbers/conversions.h"
#include "src/objects/bigint.h"
#include "src/objects/objects-inl.h"
#include "test/unittests/test-utils.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace v8 {
namespace internal {

using BigIntWithIsolate = TestWithIsolate;

void Compare(DirectHandle<BigInt> x, double value, ComparisonResult expected) {}

Handle<BigInt> NewFromInt(Isolate* isolate, int value) {}

TEST_F(BigIntWithIsolate, CompareToDouble) {}

}  // namespace internal
}  // namespace v8