chromium/v8/src/builtins/builtins-bigint.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 "src/builtins/builtins-utils-inl.h"
#include "src/builtins/builtins.h"
#include "src/logging/counters.h"
#include "src/numbers/conversions.h"
#include "src/objects/objects-inl.h"
#ifdef V8_INTL_SUPPORT
#include "src/objects/intl-objects.h"
#endif

namespace v8 {
namespace internal {

BUILTIN(BigIntConstructor) {}

BUILTIN(BigIntAsUintN) {}

BUILTIN(BigIntAsIntN) {}

namespace {

MaybeHandle<BigInt> ThisBigIntValue(Isolate* isolate, Handle<Object> value,
                                    const char* caller) {}

Tagged<Object> BigIntToStringImpl(Handle<Object> receiver, Handle<Object> radix,
                                  Isolate* isolate, const char* builtin_name) {}

}  // namespace

BUILTIN(BigIntPrototypeToLocaleString) {}

BUILTIN(BigIntPrototypeToString) {}

BUILTIN(BigIntPrototypeValueOf) {}

}  // namespace internal
}  // namespace v8