/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/objects/literal-objects.tq
41 строка
1 KB
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. @cppObjectLayoutDefinition extern class ObjectBoilerplateDescription extends HeapObject { const length: Smi; backing_store_size: Smi; flags: Smi; raw_entries[length]: Object; } @cppObjectLayoutDefinition extern class ArrayBoilerplateDescription extends Struct { flags: Smi; constant_elements: FixedArrayBase; } @cppObjectLayoutDefinition extern class RegExpBoilerplateDescription extends Struct { data: TrustedPointer<RegExpData>; source: String; flags: SmiTagged<JSRegExpFlags>; } @cppObjectLayoutDefinition extern class ClassBoilerplate extends Struct { arguments_count: Smi; static_properties_template: Object; static_elements_template: Object; static_computed_properties: FixedArray; instance_properties_template: Object; instance_elements_template: Object; instance_computed_properties: FixedArray; } extern class PrototypeSharedClosureInfo extends Struct { boilerplate_description: ObjectBoilerplateDescription; closure_feedback_cell_array: ClosureFeedbackCellArray; context: Context; }