/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/objects/js-collection.tq
43 строки
2 KB
Michaël Zasso
deps: update V8 to 12.2.281.27
31 мар 2024, 16:36
Не верифицирован
31 мар 2024, 16:36
09a8440
Код
Авторство
О чём код?
// 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 JSCollection extends JSObject { // The backing hash table. // // Use StableOrderedHasSet or StableOrderedHashMap to read. table: Object; } extern class JSSet extends JSCollection {} extern class JSMap extends JSCollection {} @abstract extern class JSWeakCollection extends JSObject { // The backing hash table mapping keys to values. table: Object; } extern class JSWeakSet extends JSWeakCollection {} extern class JSWeakMap extends JSWeakCollection {} @abstract extern class JSMapIterator extends JSCollectionIterator; extern class JSMapKeyIterator extends JSMapIterator generates 'TNode<JSMapIterator>'; extern class JSMapKeyValueIterator extends JSMapIterator generates 'TNode<JSMapIterator>'; extern class JSMapValueIterator extends JSMapIterator generates 'TNode<JSMapIterator>'; @abstract extern class JSSetIterator extends JSCollectionIterator; extern class JSSetKeyValueIterator extends JSSetIterator generates 'TNode<JSSetIterator>'; extern class JSSetValueIterator extends JSSetIterator generates 'TNode<JSSetIterator>'; transient type JSSetWithNoCustomIteration extends JSSet; transient type JSMapWithNoCustomIteration extends JSMap; // Use these types to read. Used to track user code modifying the underlying // table. transient type StableOrderedHashSet extends OrderedHashSet; transient type StableOrderedHashMap extends OrderedHashMap;