Lines Matching refs:set
318 : this.skipped.set(name, [parsed]);
589 map.set(m.name, m.idlType);
640 const set =
646 result = new Set(set);
783 testedPartials.set(parsed_idl.name, partialTestCount);
833 }.bind(this), `Partial ${parsed_idl.type} ${partialTestName}: valid exposure set`);
1396 map.set(m.name, m.idlType);
1468 assert_false("set" in desc, "self's property " + format_value(this.name) + " should not have a setter");
1490 // "* Its [[Get]] internal property is set as described in ECMA-262
1494 // "* Its [[Construct]] internal property is set as described in
1497 // "* Its @@hasInstance property is set as described in ECMA-262
1558 assert_false("set" in desc, this.name + ".length should not have a setter");
1584 assert_false("set" in desc, this.name + ".name should not have a setter");
1634 assert_false('set' in desc, alias + " should not have a setter");
1673 assert_false("set" in desc, name + " should not have a setter");
1708 assert_false("set" in desc, "prototype should not have a setter");
1723 assert_false("set" in desc, "name should not have a setter");
1730 // "4. Initialize S to the effective overload set for constructors
1742 assert_false("set" in desc, "length should not have a setter");
1789 assert_false("set" in desc, this.name + ".prototype should not have a setter");
1879 // extended attribute, or the interface is in the set of inherited
1914 assert_false("set" in desc, this.name + ".prototype.constructor should not have a setter");
1954 assert_false("set" in desc, this.name + ".prototype[Symbol.unscopables] should not have a setter");
2020 ).set;
2036 setter = desc.set;
2124 assert_false("set" in desc, "property should not have a setter");
2150 assert_false("set" in desc, "property should not have a setter");
2281 // effective overload set for that identifier and operation and with an
2328 assert_false("set" in propDesc,
2349 assert_false("set" in desc, "property should not have a setter");
2488 ["set", 2],
2512 assert_equals(sizeDesc.set, undefined, `size should not have a setter`);
2557 assert_equals(sizeDesc.set, undefined, `size should not have a setter`);
2626 assert_false("set" in desc, "property should not have a setter");
3079 assert_equals(desc.set, undefined, "setter must be undefined for readonly attributes");
3085 assert_equals(typeof desc.set, "function", "setter must be function for PutForwards, Replaceable, or non-readonly attributes");
3096 assert_throws_js(globalOf(desc.set).TypeError, function() {
3097 desc.set.call({});
3100 assert_equals(desc.set.call({}), undefined,
3107 assert_equals(desc.set.length, 1, "setter length must be 1");
3109 // "Let name be the string "set " prepended to id."
3111 assert_equals(desc.set.name, "set " + member.name,
3112 "The attribute setter must have the name 'set " + member.name + "'");
3293 assert_false("set" in desc, "property should not have a setter");
3354 assert_equals(desc.set, undefined, "setter must be undefined for namespace members");
3382 assert_false("set" in desc, "namespace object should not have a setter");
3526 // vim: set expandtab shiftwidth=4 tabstop=4 foldmarker=@{,@} foldmethod=marker: