40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
"use strict";
|
|
|
|
const conversions = require("webidl-conversions");
|
|
const utils = require("./utils.js");
|
|
|
|
exports.convert = (value, { context = "The provided value" } = {}) => {
|
|
function invokeTheCallbackFunction(event) {
|
|
if (new.target !== undefined) {
|
|
throw new Error("Internal error: invokeTheCallbackFunction is not a constructor");
|
|
}
|
|
|
|
const thisArg = utils.tryWrapperForImpl(this);
|
|
let callResult;
|
|
|
|
if (typeof value === "function") {
|
|
event = utils.tryWrapperForImpl(event);
|
|
|
|
callResult = Reflect.apply(value, thisArg, [event]);
|
|
}
|
|
|
|
callResult = conversions["any"](callResult, { context: context });
|
|
|
|
return callResult;
|
|
}
|
|
|
|
invokeTheCallbackFunction.construct = event => {
|
|
event = utils.tryWrapperForImpl(event);
|
|
|
|
let callResult = Reflect.construct(value, [event]);
|
|
|
|
callResult = conversions["any"](callResult, { context: context });
|
|
|
|
return callResult;
|
|
};
|
|
|
|
invokeTheCallbackFunction[utils.wrapperSymbol] = value;
|
|
invokeTheCallbackFunction.objectReference = value;
|
|
|
|
return invokeTheCallbackFunction;
|
|
};
|