@@ -2261,7 +2261,7 @@ exports.install = function install(globalObject) {
2261
2261
throw new TypeError(\\"Illegal invocation\\");
2262
2262
}
2263
2263
2264
- return esValue[impl ].hasAttributeNS(null, \\"reflectedboolean\\");
2264
+ return esValue[implSymbol ].hasAttributeNS(null, \\"reflectedboolean\\");
2265
2265
}
2266
2266
2267
2267
set reflectedBoolean(V) {
@@ -2276,9 +2276,9 @@ exports.install = function install(globalObject) {
2276
2276
});
2277
2277
2278
2278
if (V) {
2279
- esValue[impl ].setAttributeNS(null, \\"reflectedboolean\\", \\"\\");
2279
+ esValue[implSymbol ].setAttributeNS(null, \\"reflectedboolean\\", \\"\\");
2280
2280
} else {
2281
- esValue[impl ].removeAttributeNS(null, \\"reflectedboolean\\");
2281
+ esValue[implSymbol ].removeAttributeNS(null, \\"reflectedboolean\\");
2282
2282
}
2283
2283
}
2284
2284
@@ -2289,7 +2289,7 @@ exports.install = function install(globalObject) {
2289
2289
throw new TypeError(\\"Illegal invocation\\");
2290
2290
}
2291
2291
2292
- const value = esValue[impl ].getAttributeNS(null, \\"reflecteddomstring\\");
2292
+ const value = esValue[implSymbol ].getAttributeNS(null, \\"reflecteddomstring\\");
2293
2293
return value === null ? \\"\\" : value;
2294
2294
}
2295
2295
@@ -2304,7 +2304,7 @@ exports.install = function install(globalObject) {
2304
2304
context: \\"Failed to set the 'reflectedDOMString' property on 'Reflect': The provided value\\"
2305
2305
});
2306
2306
2307
- esValue[impl ].setAttributeNS(null, \\"reflecteddomstring\\", V);
2307
+ esValue[implSymbol ].setAttributeNS(null, \\"reflecteddomstring\\", V);
2308
2308
}
2309
2309
2310
2310
get reflectedLong() {
@@ -2314,7 +2314,7 @@ exports.install = function install(globalObject) {
2314
2314
throw new TypeError(\\"Illegal invocation\\");
2315
2315
}
2316
2316
2317
- const value = parseInt(esValue[impl ].getAttributeNS(null, \\"reflectedlong\\"));
2317
+ const value = parseInt(esValue[implSymbol ].getAttributeNS(null, \\"reflectedlong\\"));
2318
2318
return isNaN(value) || value < -2147483648 || value > 2147483647 ? 0 : value;
2319
2319
}
2320
2320
@@ -2329,7 +2329,7 @@ exports.install = function install(globalObject) {
2329
2329
context: \\"Failed to set the 'reflectedLong' property on 'Reflect': The provided value\\"
2330
2330
});
2331
2331
2332
- esValue[impl ].setAttributeNS(null, \\"reflectedlong\\", String(V));
2332
+ esValue[implSymbol ].setAttributeNS(null, \\"reflectedlong\\", String(V));
2333
2333
}
2334
2334
2335
2335
get reflectedUnsignedLong() {
@@ -2339,7 +2339,7 @@ exports.install = function install(globalObject) {
2339
2339
throw new TypeError(\\"Illegal invocation\\");
2340
2340
}
2341
2341
2342
- const value = parseInt(esValue[impl ].getAttributeNS(null, \\"reflectedunsignedlong\\"));
2342
+ const value = parseInt(esValue[implSymbol ].getAttributeNS(null, \\"reflectedunsignedlong\\"));
2343
2343
return isNaN(value) || value < 0 || value > 2147483647 ? 0 : value;
2344
2344
}
2345
2345
@@ -2354,7 +2354,7 @@ exports.install = function install(globalObject) {
2354
2354
context: \\"Failed to set the 'reflectedUnsignedLong' property on 'Reflect': The provided value\\"
2355
2355
});
2356
2356
2357
- esValue[impl ].setAttributeNS(null, \\"reflectedunsignedlong\\", String(V > 2147483647 ? 0 : V));
2357
+ esValue[implSymbol ].setAttributeNS(null, \\"reflectedunsignedlong\\", String(V > 2147483647 ? 0 : V));
2358
2358
}
2359
2359
2360
2360
get reflectedUSVStringURL() {
@@ -2364,7 +2364,7 @@ exports.install = function install(globalObject) {
2364
2364
throw new TypeError(\\"Illegal invocation\\");
2365
2365
}
2366
2366
2367
- const value = esValue[impl ].getAttributeNS(null, \\"reflectedusvstringurl\\");
2367
+ const value = esValue[implSymbol ].getAttributeNS(null, \\"reflectedusvstringurl\\");
2368
2368
if (value === null) {
2369
2369
return \\"\\";
2370
2370
}
@@ -2383,7 +2383,7 @@ exports.install = function install(globalObject) {
2383
2383
context: \\"Failed to set the 'reflectedUSVStringURL' property on 'Reflect': The provided value\\"
2384
2384
});
2385
2385
2386
- esValue[impl ].setAttributeNS(null, \\"reflectedusvstringurl\\", V);
2386
+ esValue[implSymbol ].setAttributeNS(null, \\"reflectedusvstringurl\\", V);
2387
2387
}
2388
2388
2389
2389
get reflectionTest() {
@@ -2393,7 +2393,7 @@ exports.install = function install(globalObject) {
2393
2393
throw new TypeError(\\"Illegal invocation\\");
2394
2394
}
2395
2395
2396
- const value = esValue[impl ].getAttributeNS(null, \\"reflection\\");
2396
+ const value = esValue[implSymbol ].getAttributeNS(null, \\"reflection\\");
2397
2397
return value === null ? \\"\\" : value;
2398
2398
}
2399
2399
@@ -2408,7 +2408,7 @@ exports.install = function install(globalObject) {
2408
2408
context: \\"Failed to set the 'reflectionTest' property on 'Reflect': The provided value\\"
2409
2409
});
2410
2410
2411
- esValue[impl ].setAttributeNS(null, \\"reflection\\", V);
2411
+ esValue[implSymbol ].setAttributeNS(null, \\"reflection\\", V);
2412
2412
}
2413
2413
2414
2414
get withUnderscore() {
@@ -2418,7 +2418,7 @@ exports.install = function install(globalObject) {
2418
2418
throw new TypeError(\\"Illegal invocation\\");
2419
2419
}
2420
2420
2421
- const value = esValue[impl ].getAttributeNS(null, \\"with-underscore\\");
2421
+ const value = esValue[implSymbol ].getAttributeNS(null, \\"with-underscore\\");
2422
2422
return value === null ? \\"\\" : value;
2423
2423
}
2424
2424
@@ -2433,7 +2433,7 @@ exports.install = function install(globalObject) {
2433
2433
context: \\"Failed to set the 'withUnderscore' property on 'Reflect': The provided value\\"
2434
2434
});
2435
2435
2436
- esValue[impl ].setAttributeNS(null, \\"with-underscore\\", V);
2436
+ esValue[implSymbol ].setAttributeNS(null, \\"with-underscore\\", V);
2437
2437
}
2438
2438
}
2439
2439
Object.defineProperties(Reflect.prototype, {
0 commit comments