/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/builtins/builtins-async-module.cc
45 строк
2 KB
Michaël Zasso
deps: update V8 to 13.7.152.9
18 май 2025, 10:42
18 май 2025, 10:42
fff0d15
Код
Авторство
О чём код?
// Copyright 2019 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/common/globals.h" #include "src/objects/module-inl.h" #include "src/objects/objects-inl.h" namespace v8 { namespace internal { BUILTIN(CallAsyncModuleFulfilled) { HandleScope handle_scope(isolate); Handle<SourceTextModule> module( Cast<SourceTextModule>(isolate->context()->GetNoCell( SourceTextModule::ExecuteAsyncModuleContextSlots::kModule)), isolate); if (SourceTextModule::AsyncModuleExecutionFulfilled(isolate, module) .IsNothing()) { // The evaluation of async module can not throwing a JavaScript observable // exception. DCHECK_IMPLIES(v8_flags.strict_termination_checks, isolate->is_execution_terminating()); return ReadOnlyRoots(isolate).exception(); } return ReadOnlyRoots(isolate).undefined_value(); } BUILTIN(CallAsyncModuleRejected) { HandleScope handle_scope(isolate); DirectHandle<SourceTextModule> module( Cast<SourceTextModule>(isolate->context()->GetNoCell( SourceTextModule::ExecuteAsyncModuleContextSlots::kModule)), isolate); // Arguments should be an exception object, with receiver. DCHECK_EQ(args.length(), 2); DirectHandle<Object> exception(args.at(1)); SourceTextModule::AsyncModuleExecutionRejected(isolate, module, exception); return ReadOnlyRoots(isolate).undefined_value(); } } // namespace internal } // namespace v8