"use strict";
|
|
const conversions = require("webidl-conversions");
|
const utils = require("./utils.js");
|
|
const impl = utils.implSymbol;
|
const EventTarget = require("./EventTarget.js");
|
|
function XMLHttpRequestEventTarget() {
|
throw new TypeError("Illegal constructor");
|
}
|
|
Object.setPrototypeOf(XMLHttpRequestEventTarget.prototype, EventTarget.interface.prototype);
|
Object.setPrototypeOf(XMLHttpRequestEventTarget, EventTarget.interface);
|
|
Object.defineProperty(XMLHttpRequestEventTarget, "prototype", {
|
value: XMLHttpRequestEventTarget.prototype,
|
writable: false,
|
enumerable: false,
|
configurable: false
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "onloadstart", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["onloadstart"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["onloadstart"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "onprogress", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["onprogress"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["onprogress"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "onabort", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["onabort"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["onabort"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "onerror", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["onerror"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["onerror"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "onload", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["onload"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["onload"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "ontimeout", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["ontimeout"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["ontimeout"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, "onloadend", {
|
get() {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
return utils.tryWrapperForImpl(this[impl]["onloadend"]);
|
},
|
|
set(V) {
|
if (!this || !module.exports.is(this)) {
|
throw new TypeError("Illegal invocation");
|
}
|
|
V = utils.tryImplForWrapper(V);
|
|
this[impl]["onloadend"] = V;
|
},
|
|
enumerable: true,
|
configurable: true
|
});
|
|
Object.defineProperty(XMLHttpRequestEventTarget.prototype, Symbol.toStringTag, {
|
value: "XMLHttpRequestEventTarget",
|
writable: false,
|
enumerable: false,
|
configurable: true
|
});
|
|
const iface = {
|
// When an interface-module that implements this interface as a mixin is loaded, it will append its own `.is()`
|
// method into this array. It allows objects that directly implements *those* interfaces to be recognized as
|
// implementing this mixin interface.
|
_mixedIntoPredicates: [],
|
is(obj) {
|
if (obj) {
|
if (utils.hasOwn(obj, impl) && obj[impl] instanceof Impl.implementation) {
|
return true;
|
}
|
for (const isMixedInto of module.exports._mixedIntoPredicates) {
|
if (isMixedInto(obj)) {
|
return true;
|
}
|
}
|
}
|
return false;
|
},
|
isImpl(obj) {
|
if (obj) {
|
if (obj instanceof Impl.implementation) {
|
return true;
|
}
|
|
const wrapper = utils.wrapperForImpl(obj);
|
for (const isMixedInto of module.exports._mixedIntoPredicates) {
|
if (isMixedInto(wrapper)) {
|
return true;
|
}
|
}
|
}
|
return false;
|
},
|
convert(obj, { context = "The provided value" } = {}) {
|
if (module.exports.is(obj)) {
|
return utils.implForWrapper(obj);
|
}
|
throw new TypeError(`${context} is not of type 'XMLHttpRequestEventTarget'.`);
|
},
|
|
create(constructorArgs, privateData) {
|
let obj = Object.create(XMLHttpRequestEventTarget.prototype);
|
obj = this.setup(obj, constructorArgs, privateData);
|
return obj;
|
},
|
createImpl(constructorArgs, privateData) {
|
let obj = Object.create(XMLHttpRequestEventTarget.prototype);
|
obj = this.setup(obj, constructorArgs, privateData);
|
return utils.implForWrapper(obj);
|
},
|
_internalSetup(obj) {
|
EventTarget._internalSetup(obj);
|
},
|
setup(obj, constructorArgs, privateData) {
|
if (!privateData) privateData = {};
|
|
privateData.wrapper = obj;
|
|
this._internalSetup(obj);
|
Object.defineProperty(obj, impl, {
|
value: new Impl.implementation(constructorArgs, privateData),
|
writable: false,
|
enumerable: false,
|
configurable: true
|
});
|
|
obj[impl][utils.wrapperSymbol] = obj;
|
if (Impl.init) {
|
Impl.init(obj[impl], privateData);
|
}
|
return obj;
|
},
|
interface: XMLHttpRequestEventTarget,
|
expose: {
|
Window: { XMLHttpRequestEventTarget },
|
DedicatedWorker: { XMLHttpRequestEventTarget },
|
SharedWorker: { XMLHttpRequestEventTarget }
|
}
|
}; // iface
|
module.exports = iface;
|
|
const Impl = require("../xhr/XMLHttpRequestEventTarget-impl.js");
|