chromium/v8/src/builtins/builtins-callsite.cc

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

#include "src/builtins/builtins-utils-inl.h"
#include "src/builtins/builtins.h"
#include "src/heap/heap-inl.h"  // For ToBoolean.
#include "src/logging/counters.h"
#include "src/objects/call-site-info-inl.h"
#include "src/objects/objects-inl.h"

namespace v8 {
namespace internal {

#define CHECK_CALLSITE

namespace {

Tagged<Object> PositiveNumberOrNull(int value, Isolate* isolate) {}

bool NativeContextIsForShadowRealm(Tagged<NativeContext> native_context) {}

}  // namespace

BUILTIN(CallSitePrototypeGetColumnNumber) {}

BUILTIN(CallSitePrototypeGetEnclosingColumnNumber) {}

BUILTIN(CallSitePrototypeGetEnclosingLineNumber) {}

BUILTIN(CallSitePrototypeGetEvalOrigin) {}

BUILTIN(CallSitePrototypeGetFileName) {}

BUILTIN(CallSitePrototypeGetFunction) {}

BUILTIN(CallSitePrototypeGetFunctionName) {}

BUILTIN(CallSitePrototypeGetLineNumber) {}

BUILTIN(CallSitePrototypeGetMethodName) {}

BUILTIN(CallSitePrototypeGetPosition) {}

BUILTIN(CallSitePrototypeGetPromiseIndex) {}

BUILTIN(CallSitePrototypeGetScriptHash) {}

BUILTIN(CallSitePrototypeGetScriptNameOrSourceURL) {}

BUILTIN(CallSitePrototypeGetThis) {}

BUILTIN(CallSitePrototypeGetTypeName) {}

BUILTIN(CallSitePrototypeIsAsync) {}

BUILTIN(CallSitePrototypeIsConstructor) {}

BUILTIN(CallSitePrototypeIsEval) {}

BUILTIN(CallSitePrototypeIsNative) {}

BUILTIN(CallSitePrototypeIsPromiseAll) {}

BUILTIN(CallSitePrototypeIsToplevel) {}

BUILTIN(CallSitePrototypeToString) {}

#undef CHECK_CALLSITE

}  // namespace internal
}  // namespace v8