@@ -2010,7 +2010,11 @@ exports.install = (globalObject, globalNames) => {
2010
2010
static set staticAttr(V) {
2011
2011
const esValue = this !== null && this !== undefined ? this : globalObject;
2012
2012
2013
- return Impl.implementation[\\"staticAttr\\"];
2013
+ V = conversions[\\"DOMString\\"](V, {
2014
+ context: \\"Failed to set the 'staticAttr' property on 'Global': The provided value\\"
2015
+ });
2016
+
2017
+ Impl.implementation[\\"staticAttr\\"] = V;
2014
2018
}
2015
2019
}
2016
2020
Object.defineProperties(Global.prototype, { [Symbol.toStringTag]: { value: \\"Global\\", configurable: true } });
@@ -4727,7 +4731,9 @@ exports.install = (globalObject, globalNames) => {
4727
4731
static set abc(V) {
4728
4732
const esValue = this !== null && this !== undefined ? this : globalObject;
4729
4733
4730
- return Impl.implementation[\\"abc\\"];
4734
+ V = conversions[\\"DOMString\\"](V, { context: \\"Failed to set the 'abc' property on 'Static': The provided value\\" });
4735
+
4736
+ Impl.implementation[\\"abc\\"] = V;
4731
4737
}
4732
4738
}
4733
4739
Object.defineProperties(Static.prototype, {
@@ -10821,7 +10827,11 @@ exports.install = (globalObject, globalNames) => {
10821
10827
static set staticAttr(V) {
10822
10828
const esValue = this !== null && this !== undefined ? this : globalObject;
10823
10829
10824
- return Impl.implementation[\\"staticAttr\\"];
10830
+ V = conversions[\\"DOMString\\"](V, {
10831
+ context: \\"Failed to set the 'staticAttr' property on 'Global': The provided value\\"
10832
+ });
10833
+
10834
+ Impl.implementation[\\"staticAttr\\"] = V;
10825
10835
}
10826
10836
}
10827
10837
Object.defineProperties(Global.prototype, { [Symbol.toStringTag]: { value: \\"Global\\", configurable: true } });
@@ -13522,7 +13532,9 @@ exports.install = (globalObject, globalNames) => {
13522
13532
static set abc(V) {
13523
13533
const esValue = this !== null && this !== undefined ? this : globalObject;
13524
13534
13525
- return Impl.implementation[\\"abc\\"];
13535
+ V = conversions[\\"DOMString\\"](V, { context: \\"Failed to set the 'abc' property on 'Static': The provided value\\" });
13536
+
13537
+ Impl.implementation[\\"abc\\"] = V;
13526
13538
}
13527
13539
}
13528
13540
Object.defineProperties(Static.prototype, {
0 commit comments