@@ -8645,6 +8645,42 @@ exports.install = (globalObject, globalNames) => {
86458645 return esValue[implSymbol].numOrStrOrURLOrNullConsumer(...args);
86468646 }
86478647
8648+ numOrObjConsumer(a) {
8649+ const esValue = this !== null && this !== undefined ? this : globalObject;
8650+ if (!exports.is(esValue)) {
8651+ throw new globalObject.TypeError(
8652+ "'numOrObjConsumer' called on an object that is not a valid instance of TypedefsAndUnions."
8653+ );
8654+ }
8655+
8656+ if (arguments.length < 1) {
8657+ throw new globalObject.TypeError(
8658+ \`Failed to execute 'numOrObjConsumer' on 'TypedefsAndUnions': 1 argument required, but only \${arguments.length} present.\`
8659+ );
8660+ }
8661+ const args = [];
8662+ {
8663+ let curArg = arguments[0];
8664+ if (utils.isObject(curArg)) {
8665+ if (curArg[utils.implSymbol]) {
8666+ curArg = utils.implForWrapper(curArg);
8667+ }
8668+ } else if (typeof curArg === "number") {
8669+ curArg = conversions["double"](curArg, {
8670+ context: "Failed to execute 'numOrObjConsumer' on 'TypedefsAndUnions': parameter 1",
8671+ globals: globalObject
8672+ });
8673+ } else {
8674+ curArg = conversions["double"](curArg, {
8675+ context: "Failed to execute 'numOrObjConsumer' on 'TypedefsAndUnions': parameter 1",
8676+ globals: globalObject
8677+ });
8678+ }
8679+ args.push(curArg);
8680+ }
8681+ return esValue[implSymbol].numOrObjConsumer(...args);
8682+ }
8683+
86488684 urlMapInnerConsumer(a) {
86498685 const esValue = this !== null && this !== undefined ? this : globalObject;
86508686 if (!exports.is(esValue)) {
@@ -9080,6 +9116,7 @@ exports.install = (globalObject, globalNames) => {
90809116 numOrEnumConsumer: { enumerable: true },
90819117 numOrStrOrNullConsumer: { enumerable: true },
90829118 numOrStrOrURLOrNullConsumer: { enumerable: true },
9119+ numOrObjConsumer: { enumerable: true },
90839120 urlMapInnerConsumer: { enumerable: true },
90849121 urlMapConsumer: { enumerable: true },
90859122 bufferSourceOrURLConsumer: { enumerable: true },
@@ -20379,6 +20416,42 @@ exports.install = (globalObject, globalNames) => {
2037920416 return esValue[implSymbol].numOrStrOrURLOrNullConsumer(...args);
2038020417 }
2038120418
20419+ numOrObjConsumer(a) {
20420+ const esValue = this !== null && this !== undefined ? this : globalObject;
20421+ if (!exports.is(esValue)) {
20422+ throw new globalObject.TypeError(
20423+ "'numOrObjConsumer' called on an object that is not a valid instance of TypedefsAndUnions."
20424+ );
20425+ }
20426+
20427+ if (arguments.length < 1) {
20428+ throw new globalObject.TypeError(
20429+ \`Failed to execute 'numOrObjConsumer' on 'TypedefsAndUnions': 1 argument required, but only \${arguments.length} present.\`
20430+ );
20431+ }
20432+ const args = [];
20433+ {
20434+ let curArg = arguments[0];
20435+ if (utils.isObject(curArg)) {
20436+ if (curArg[utils.implSymbol]) {
20437+ curArg = utils.implForWrapper(curArg);
20438+ }
20439+ } else if (typeof curArg === "number") {
20440+ curArg = conversions["double"](curArg, {
20441+ context: "Failed to execute 'numOrObjConsumer' on 'TypedefsAndUnions': parameter 1",
20442+ globals: globalObject
20443+ });
20444+ } else {
20445+ curArg = conversions["double"](curArg, {
20446+ context: "Failed to execute 'numOrObjConsumer' on 'TypedefsAndUnions': parameter 1",
20447+ globals: globalObject
20448+ });
20449+ }
20450+ args.push(curArg);
20451+ }
20452+ return esValue[implSymbol].numOrObjConsumer(...args);
20453+ }
20454+
2038220455 urlMapInnerConsumer(a) {
2038320456 const esValue = this !== null && this !== undefined ? this : globalObject;
2038420457 if (!exports.is(esValue)) {
@@ -20814,6 +20887,7 @@ exports.install = (globalObject, globalNames) => {
2081420887 numOrEnumConsumer: { enumerable: true },
2081520888 numOrStrOrNullConsumer: { enumerable: true },
2081620889 numOrStrOrURLOrNullConsumer: { enumerable: true },
20890+ numOrObjConsumer: { enumerable: true },
2081720891 urlMapInnerConsumer: { enumerable: true },
2081820892 urlMapConsumer: { enumerable: true },
2081920893 bufferSourceOrURLConsumer: { enumerable: true },
0 commit comments