/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/objects/module.tq
31 строка
976 B
Michaël Zasso
deps: update V8 to 14.6.202.33
24 апр 2026, 19:01
Не верифицирован
24 апр 2026, 19:01
f1e0b83
Код
Авторство
О чём код?
// 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. @abstract extern class Module extends HeapObject { // The complete export table, mapping an export name to its cell. exports: ObjectHashTable; // Hash for this object (a random non-zero Smi). hash: Smi; status: Smi; module_namespace: Cell|Undefined; deferred_module_namespace: Cell|Undefined; // The exception in the case {status} is kErrored. exception: Object; // The top level promise capability of this module. Will only be defined // for cycle roots. top_level_capability: JSPromise|Undefined; } extern class JSModuleNamespace extends JSSpecialObject { module: Module; } extern class JSDeferredModuleNamespace extends JSModuleNamespace {} @cppObjectLayoutDefinition extern class ScriptOrModule extends Struct { resource_name: Object; host_defined_options: FixedArray; }