chromium/v8/src/runtime/runtime-promise.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/api/api-inl.h"
#include "src/debug/debug.h"
#include "src/execution/arguments-inl.h"
#include "src/execution/microtask-queue.h"
#include "src/objects/js-promise-inl.h"

namespace v8 {
namespace internal {

RUNTIME_FUNCTION(Runtime_PromiseRejectEventFromStack) {}

RUNTIME_FUNCTION(Runtime_PromiseRejectAfterResolved) {}

RUNTIME_FUNCTION(Runtime_PromiseResolveAfterResolved) {}

RUNTIME_FUNCTION(Runtime_PromiseRevokeReject) {}

RUNTIME_FUNCTION(Runtime_EnqueueMicrotask) {}

RUNTIME_FUNCTION(Runtime_PerformMicrotaskCheckpoint) {}

RUNTIME_FUNCTION(Runtime_RunMicrotaskCallback) {}

RUNTIME_FUNCTION(Runtime_PromiseHookInit) {}

RUNTIME_FUNCTION(Runtime_PromiseHookBefore) {}

RUNTIME_FUNCTION(Runtime_PromiseHookAfter) {}

RUNTIME_FUNCTION(Runtime_RejectPromise) {}

RUNTIME_FUNCTION(Runtime_ResolvePromise) {}

// A helper function to be called when constructing AggregateError objects. This
// takes care of the Error-related construction, e.g., stack traces.
RUNTIME_FUNCTION(Runtime_ConstructAggregateErrorHelper) {}

// A helper function to be called when constructing AggregateError objects. This
// takes care of the Error-related construction, e.g., stack traces.
RUNTIME_FUNCTION(Runtime_ConstructInternalAggregateErrorHelper) {}

RUNTIME_FUNCTION(Runtime_ConstructSuppressedError) {}

}  // namespace internal
}  // namespace v8