feat: initial commit of Railtrack Pro prototype with complete test suite

This commit is contained in:
Railtrack Pro Dev
2026-03-13 14:26:16 +00:00
commit 40500bb503
7790 changed files with 986332 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
"use strict";
const conversions = require("webidl-conversions");
const utils = require("./utils.js");
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
if (typeof value !== "function") {
throw new globalObject.TypeError(context + " is not a function");
}
function invokeTheCallbackFunction(mutations, observer) {
const thisArg = utils.tryWrapperForImpl(this);
let callResult;
mutations = utils.tryWrapperForImpl(mutations);
observer = utils.tryWrapperForImpl(observer);
callResult = Reflect.apply(value, thisArg, [mutations, observer]);
}
invokeTheCallbackFunction.construct = (mutations, observer) => {
mutations = utils.tryWrapperForImpl(mutations);
observer = utils.tryWrapperForImpl(observer);
let callResult = Reflect.construct(value, [mutations, observer]);
};
invokeTheCallbackFunction[utils.wrapperSymbol] = value;
invokeTheCallbackFunction.objectReference = value;
return invokeTheCallbackFunction;
};