Home
last modified time | relevance | path

Searched refs:WeakSet (Results 1 - 25 of 64) sorted by relevance

123

/third_party/jerryscript/tests/jerry/es2015/
H A Dweakset.js16 var m1 = new WeakSet();
19 assert (m1.add (k1) instanceof WeakSet);
27 assert (m1.add (k1) instanceof WeakSet);
48 assert (m1.add (k1) instanceof WeakSet);
53 var m2 = new WeakSet();
70 new WeakSet().add(new WeakSet().add(new WeakSet().add(new WeakSet().add(new WeakSet()
80 WeakSet.prototype.get.call({}); global() class
[all...]
/third_party/typescript/tests/baselines/reference/
H A DprivateNameDuplicateField.js428 _A_Field_Method_foo = new WeakMap(), _A_Field_Method_instances = new WeakSet();
437 _A_Field_Getter_foo = new WeakMap(), _A_Field_Getter_instances = new WeakSet();
446 _A_Field_Setter_foo = new WeakMap(), _A_Field_Setter_instances = new WeakSet();
487 _A_Method_Field_foo_1 = new WeakMap(), _A_Method_Field_instances = new WeakSet();
496 _A_Method_Method_instances = new WeakSet();
505 _A_Method_Getter_instances = new WeakSet();
514 _A_Method_Setter_instances = new WeakSet();
523 _a = A_Method_StaticField, _A_Method_StaticField_instances = new WeakSet();
533 _b = A_Method_StaticMethod, _A_Method_StaticMethod_instances = new WeakSet();
542 _c = A_Method_StaticGetter, _A_Method_StaticGetter_instances = new WeakSet();
[all...]
H A DprivateNameWeakMapCollision.js4 let WeakSet;
15 let WeakSet;
H A DprivateNameNestedClassAccessorsShadowing.js42 _Derived_instances = new WeakSet(), _Derived_x_get = function _Derived_x_get() { return 1; };
45 _Base_instances = new WeakSet(), _Base_x_get = function _Base_x_get() { return 1; };
H A DprivateNameNestedClassMethodShadowing.js42 _Derived_instances = new WeakSet(), _Derived_x = function _Derived_x() { };
45 _Base_instances = new WeakSet(), _Base_x = function _Base_x() { };
H A DprivateNameNestedMethodAccess.js55 _D_instances = new WeakSet(),
60 _C_foo = new WeakMap(), _C_instances = new WeakSet(), _C_bar = function _C_bar() { __classPrivateFieldGet(new C(), _C_instances, "a", _C_baz_get); }, _C_baz_get = function _C_baz_get() { return 42; };
H A DprivateNamesUseBeforeDef.js44 _A2_foo = new WeakMap(), _A2_instances = new WeakSet(), _A2_bar = function _A2_bar() { return 3; };
52 _A3_foo = new WeakMap(), _A3_instances = new WeakSet(), _A3_bar_get = function _A3_bar_get() { return 3; };
H A DprivateNameConstructorReserved.js15 _A_instances = new WeakSet();
H A DprivateNamesAndDecorators.js21 _A_foo = new WeakMap(), _A_instances = new WeakSet(), _A_bar = function _A_bar() { };
H A DprivateNameClassExpressionLoop.js25 _C_instances = new WeakSet(),
H A DprivateNameEmitHelpers.js25 _C_a = new WeakMap(), _C_instances = new WeakSet(), _C_b = function _C_b() { __classPrivateFieldSet(this, _C_instances, 42, "a", _C_c_set); }, _C_c_set = function _C_c_set(v) { __classPrivateFieldSet(this, _C_a, __classPrivateFieldGet(this, _C_a, "f") + v, "f"); };
H A DprivateNameMethod.js31 _A1_instances = new WeakSet(), _A1_method = function _A1_method(param) {
H A DprivateNameMethodInStaticFieldInit.js22 _C_instances = new WeakSet(), _C_method = function _C_method() { return 42; };
H A DprivateNamesAndkeyof.js38 _A_fooField = new WeakMap(), _A_instances = new WeakSet(), _A_fooMethod = function _A_fooMethod() { }, _A_fooProp_get = function _A_fooProp_get() { return 1; }, _A_fooProp_set = function _A_fooProp_set(value) { };
H A DprivateNameAccessorssDerivedClasses.js30 _Base_instances = new WeakSet(), _Base_prop_get = function _Base_prop_get() { return 123; };
H A DprivateNameMethodsDerivedClasses.js30 _Base_instances = new WeakSet(), _Base_prop = function _Base_prop() { return 123; };
H A DprivateNameReadonly.js28 _C_instances = new WeakSet(),
H A DprivateNameSetterExprReturnValue.js30 _C_instances = new WeakSet(), _C_foo_set = function _C_foo_set(a) { };
H A DprivateNamesIncompatibleModifiersJs.js82 _A_a = new WeakMap(), _A_b = new WeakMap(), _A_c = new WeakMap(), _A_instances = new WeakSet(), _A_aMethod = function _A_aMethod() { return 1; }, _A_bMethod = function _A_bMethod() { return 1; }, _A_cMethod = function _A_cMethod() { return 1; }, _A_aProp_get = function _A_aProp_get() { return 1; }, _A_aProp_set = function _A_aProp_set(value) { }, _A_bProp_get = function _A_bProp_get() { return 1; }, _A_bProp_set = function _A_bProp_set(value) { }, _A_cProp_get = function _A_cProp_get() { return 1; }, _A_cProp_set = function _A_cProp_set(value) { };
H A DprivateNameAccessorsAccess.js46 _A2_instances = new WeakSet(), _A2_prop_get = function _A2_prop_get() { return ""; }, _A2_prop_set = function _A2_prop_set(param) { };
H A DprivateNameMethodAccess.js44 _A2_instances = new WeakSet(), _A2_method = function _A2_method() { return ""; };
/third_party/python/Lib/test/
H A Dtest_weakset.py2 from weakref import WeakSet namespace
19 class WeakSetSubclass(WeakSet):
22 class WeakSetWithSlots(WeakSet):
35 self.ab_weakset = WeakSet(self.ab_items)
36 self.abcde_weakset = WeakSet(self.abcde_items)
37 self.def_weakset = WeakSet(self.def_items)
39 self.s = WeakSet(self.items)
42 self.fs = WeakSet([self.obj])
45 weaksetmethods = dir(WeakSet)
50 "WeakSet missin
[all...]
/third_party/python/Lib/
H A D_py_abc.py1 from _weakrefset import WeakSet namespace
48 cls._abc_registry = WeakSet()
49 cls._abc_cache = WeakSet()
50 cls._abc_negative_cache = WeakSet()
79 if isinstance(value, WeakSet):
118 cls._abc_negative_cache = WeakSet()
/third_party/node/lib/internal/
H A Dfreeze_intrinsics.js119 WeakSet,
308 WeakSet, // 24.4
371 const frozenSet = new WeakSet();
450 // We capture the real WeakSet.prototype.add above, in case someone
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/internal/
H A Dprimordials.js230 'WeakSet',
282 WeakSet,
384 WeakSet,
385 class SafeWeakSet extends WeakSet {

Completed in 5 milliseconds

123