@@ -2074,7 +2074,11 @@ exports.install = (globalObject, globalNames) => {
2074
2074
static set staticAttr(V) {
2075
2075
const esValue = this !== null && this !== undefined ? this : globalObject;
2076
2076
2077
- return Impl.implementation[\\"staticAttr\\"];
2077
+ V = conversions[\\"DOMString\\"](V, {
2078
+ context: \\"Failed to set the 'staticAttr' property on 'Global': The provided value\\"
2079
+ });
2080
+
2081
+ Impl.implementation[\\"staticAttr\\"] = V;
2078
2082
}
2079
2083
}
2080
2084
Object.defineProperties(Global.prototype, { [Symbol.toStringTag]: { value: \\"Global\\", configurable: true } });
@@ -5691,7 +5695,9 @@ exports.install = (globalObject, globalNames) => {
5691
5695
static set abc(V) {
5692
5696
const esValue = this !== null && this !== undefined ? this : globalObject;
5693
5697
5694
- return Impl.implementation[\\"abc\\"];
5698
+ V = conversions[\\"DOMString\\"](V, { context: \\"Failed to set the 'abc' property on 'Static': The provided value\\" });
5699
+
5700
+ Impl.implementation[\\"abc\\"] = V;
5695
5701
}
5696
5702
}
5697
5703
Object.defineProperties(Static.prototype, {
@@ -11969,7 +11975,11 @@ exports.install = (globalObject, globalNames) => {
11969
11975
static set staticAttr(V) {
11970
11976
const esValue = this !== null && this !== undefined ? this : globalObject;
11971
11977
11972
- return Impl.implementation[\\"staticAttr\\"];
11978
+ V = conversions[\\"DOMString\\"](V, {
11979
+ context: \\"Failed to set the 'staticAttr' property on 'Global': The provided value\\"
11980
+ });
11981
+
11982
+ Impl.implementation[\\"staticAttr\\"] = V;
11973
11983
}
11974
11984
}
11975
11985
Object.defineProperties(Global.prototype, { [Symbol.toStringTag]: { value: \\"Global\\", configurable: true } });
@@ -15567,7 +15577,9 @@ exports.install = (globalObject, globalNames) => {
15567
15577
static set abc(V) {
15568
15578
const esValue = this !== null && this !== undefined ? this : globalObject;
15569
15579
15570
- return Impl.implementation[\\"abc\\"];
15580
+ V = conversions[\\"DOMString\\"](V, { context: \\"Failed to set the 'abc' property on 'Static': The provided value\\" });
15581
+
15582
+ Impl.implementation[\\"abc\\"] = V;
15571
15583
}
15572
15584
}
15573
15585
Object.defineProperties(Static.prototype, {
0 commit comments