@babel/runtime
Advanced tools
Comparing version 7.21.5 to 7.22.6
var _typeof = require("./typeof.js")["default"]; | ||
var checkInRHS = require("./checkInRHS.js"); | ||
function createAddInitializerMethod(initializers, decoratorFinishedRef) { | ||
return function (initializer) { | ||
assertNotFinished(decoratorFinishedRef, "addInitializer"), assertCallable(initializer, "An initializer"), initializers.push(initializer); | ||
}; | ||
} | ||
function assertInstanceIfPrivate(has, target) { | ||
if (!has(target)) throw new TypeError("Attempted to access private element on non-instance"); | ||
} | ||
function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand) { | ||
var kindStr; | ||
switch (kind) { | ||
case 1: | ||
kindStr = "accessor"; | ||
break; | ||
case 2: | ||
kindStr = "method"; | ||
break; | ||
case 3: | ||
kindStr = "getter"; | ||
break; | ||
case 4: | ||
kindStr = "setter"; | ||
break; | ||
default: | ||
kindStr = "field"; | ||
function applyDecs2301Factory() { | ||
function createAddInitializerMethod(initializers, decoratorFinishedRef) { | ||
return function (initializer) { | ||
!function (decoratorFinishedRef, fnName) { | ||
if (decoratorFinishedRef.v) throw new Error("attempted to call " + fnName + " after decoration was finished"); | ||
}(decoratorFinishedRef, "addInitializer"), assertCallable(initializer, "An initializer"), initializers.push(initializer); | ||
}; | ||
} | ||
var get, | ||
set, | ||
ctx = { | ||
kind: kindStr, | ||
name: isPrivate ? "#" + name : name, | ||
"static": isStatic, | ||
"private": isPrivate | ||
}, | ||
decoratorFinishedRef = { | ||
v: !1 | ||
function assertInstanceIfPrivate(has, target) { | ||
if (!has(target)) throw new TypeError("Attempted to access private element on non-instance"); | ||
} | ||
function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand) { | ||
var kindStr; | ||
switch (kind) { | ||
case 1: | ||
kindStr = "accessor"; | ||
break; | ||
case 2: | ||
kindStr = "method"; | ||
break; | ||
case 3: | ||
kindStr = "getter"; | ||
break; | ||
case 4: | ||
kindStr = "setter"; | ||
break; | ||
default: | ||
kindStr = "field"; | ||
} | ||
var get, | ||
set, | ||
ctx = { | ||
kind: kindStr, | ||
name: isPrivate ? "#" + name : name, | ||
"static": isStatic, | ||
"private": isPrivate | ||
}, | ||
decoratorFinishedRef = { | ||
v: !1 | ||
}; | ||
if (0 !== kind && (ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef)), isPrivate || 0 !== kind && 2 !== kind) { | ||
if (2 === kind) get = function get(target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.value; | ||
};else { | ||
var t = 0 === kind || 1 === kind; | ||
(t || 3 === kind) && (get = isPrivate ? function (target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.get.call(target); | ||
} : function (target) { | ||
return desc.get.call(target); | ||
}), (t || 4 === kind) && (set = isPrivate ? function (target, value) { | ||
assertInstanceIfPrivate(hasPrivateBrand, target), desc.set.call(target, value); | ||
} : function (target, value) { | ||
desc.set.call(target, value); | ||
}); | ||
} | ||
} else get = function get(target) { | ||
return target[name]; | ||
}, 0 === kind && (set = function set(target, v) { | ||
target[name] = v; | ||
}); | ||
var has = isPrivate ? hasPrivateBrand.bind() : function (target) { | ||
return name in target; | ||
}; | ||
if (0 !== kind && (ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef)), isPrivate || 0 !== kind && 2 !== kind) { | ||
if (2 === kind) get = function get(target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.value; | ||
};else { | ||
var t = 0 === kind || 1 === kind; | ||
(t || 3 === kind) && (get = isPrivate ? function (target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.get.call(target); | ||
} : function (target) { | ||
return desc.get.call(target); | ||
}), (t || 4 === kind) && (set = isPrivate ? function (target, value) { | ||
assertInstanceIfPrivate(hasPrivateBrand, target), desc.set.call(target, value); | ||
} : function (target, value) { | ||
desc.set.call(target, value); | ||
}); | ||
ctx.access = get && set ? { | ||
get: get, | ||
set: set, | ||
has: has | ||
} : get ? { | ||
get: get, | ||
has: has | ||
} : { | ||
set: set, | ||
has: has | ||
}; | ||
try { | ||
return dec(value, ctx); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
} | ||
} else get = function get(target) { | ||
return target[name]; | ||
}, 0 === kind && (set = function set(target, v) { | ||
target[name] = v; | ||
}); | ||
var has = isPrivate ? hasPrivateBrand.bind() : function (target) { | ||
return name in target; | ||
}; | ||
ctx.access = get && set ? { | ||
get: get, | ||
set: set, | ||
has: has | ||
} : get ? { | ||
get: get, | ||
has: has | ||
} : { | ||
set: set, | ||
has: has | ||
}; | ||
try { | ||
return dec(value, ctx); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
} | ||
} | ||
function assertNotFinished(decoratorFinishedRef, fnName) { | ||
if (decoratorFinishedRef.v) throw new Error("attempted to call " + fnName + " after decoration was finished"); | ||
} | ||
function assertCallable(fn, hint) { | ||
if ("function" != typeof fn) throw new TypeError(hint + " must be a function"); | ||
} | ||
function assertValidReturnValue(kind, value) { | ||
var type = _typeof(value); | ||
if (1 === kind) { | ||
if ("object" !== type || null === value) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0"); | ||
void 0 !== value.get && assertCallable(value.get, "accessor.get"), void 0 !== value.set && assertCallable(value.set, "accessor.set"), void 0 !== value.init && assertCallable(value.init, "accessor.init"); | ||
} else if ("function" !== type) { | ||
var hint; | ||
throw hint = 0 === kind ? "field" : 10 === kind ? "class" : "method", new TypeError(hint + " decorators must return a function or void 0"); | ||
function assertCallable(fn, hint) { | ||
if ("function" != typeof fn) throw new TypeError(hint + " must be a function"); | ||
} | ||
} | ||
function curryThis1(fn) { | ||
return function () { | ||
return fn(this); | ||
}; | ||
} | ||
function curryThis2(fn) { | ||
return function (value) { | ||
fn(this, value); | ||
}; | ||
} | ||
function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand) { | ||
var desc, | ||
init, | ||
value, | ||
newValue, | ||
get, | ||
set, | ||
decs = decInfo[0]; | ||
if (isPrivate ? desc = 0 === kind || 1 === kind ? { | ||
get: curryThis1(decInfo[3]), | ||
set: curryThis2(decInfo[4]) | ||
} : 3 === kind ? { | ||
get: decInfo[3] | ||
} : 4 === kind ? { | ||
set: decInfo[3] | ||
} : { | ||
value: decInfo[3] | ||
} : 0 !== kind && (desc = Object.getOwnPropertyDescriptor(base, name)), 1 === kind ? value = { | ||
get: desc.get, | ||
set: desc.set | ||
} : 2 === kind ? value = desc.value : 3 === kind ? value = desc.get : 4 === kind && (value = desc.set), "function" == typeof decs) void 0 !== (newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand)) && (assertValidReturnValue(kind, newValue), 0 === kind ? init = newValue : 1 === kind ? (init = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
get: get, | ||
set: set | ||
}) : value = newValue);else for (var i = decs.length - 1; i >= 0; i--) { | ||
var newInit; | ||
if (void 0 !== (newValue = memberDec(decs[i], name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand))) assertValidReturnValue(kind, newValue), 0 === kind ? newInit = newValue : 1 === kind ? (newInit = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
function assertValidReturnValue(kind, value) { | ||
var type = _typeof(value); | ||
if (1 === kind) { | ||
if ("object" !== type || null === value) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0"); | ||
void 0 !== value.get && assertCallable(value.get, "accessor.get"), void 0 !== value.set && assertCallable(value.set, "accessor.set"), void 0 !== value.init && assertCallable(value.init, "accessor.init"); | ||
} else if ("function" !== type) { | ||
var hint; | ||
throw hint = 0 === kind ? "field" : 10 === kind ? "class" : "method", new TypeError(hint + " decorators must return a function or void 0"); | ||
} | ||
} | ||
function curryThis2(fn) { | ||
return function (value) { | ||
fn(this, value); | ||
}; | ||
} | ||
function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand) { | ||
var desc, | ||
init, | ||
value, | ||
fn, | ||
newValue, | ||
get, | ||
set, | ||
decs = decInfo[0]; | ||
if (isPrivate ? desc = 0 === kind || 1 === kind ? { | ||
get: (fn = decInfo[3], function () { | ||
return fn(this); | ||
}), | ||
set: curryThis2(decInfo[4]) | ||
} : 3 === kind ? { | ||
get: decInfo[3] | ||
} : 4 === kind ? { | ||
set: decInfo[3] | ||
} : { | ||
value: decInfo[3] | ||
} : 0 !== kind && (desc = Object.getOwnPropertyDescriptor(base, name)), 1 === kind ? value = { | ||
get: desc.get, | ||
set: desc.set | ||
} : 2 === kind ? value = desc.value : 3 === kind ? value = desc.get : 4 === kind && (value = desc.set), "function" == typeof decs) void 0 !== (newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand)) && (assertValidReturnValue(kind, newValue), 0 === kind ? init = newValue : 1 === kind ? (init = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
get: get, | ||
set: set | ||
}) : value = newValue, void 0 !== newInit && (void 0 === init ? init = newInit : "function" == typeof init ? init = [init, newInit] : init.push(newInit)); | ||
} | ||
if (0 === kind || 1 === kind) { | ||
if (void 0 === init) init = function init(instance, _init) { | ||
return _init; | ||
};else if ("function" != typeof init) { | ||
var ownInitializers = init; | ||
init = function init(instance, _init2) { | ||
for (var value = _init2, i = 0; i < ownInitializers.length; i++) value = ownInitializers[i].call(instance, value); | ||
return value; | ||
}; | ||
} else { | ||
var originalInitializer = init; | ||
init = function init(instance, _init3) { | ||
return originalInitializer.call(instance, _init3); | ||
}; | ||
}) : value = newValue);else for (var i = decs.length - 1; i >= 0; i--) { | ||
var newInit; | ||
if (void 0 !== (newValue = memberDec(decs[i], name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand))) assertValidReturnValue(kind, newValue), 0 === kind ? newInit = newValue : 1 === kind ? (newInit = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
get: get, | ||
set: set | ||
}) : value = newValue, void 0 !== newInit && (void 0 === init ? init = newInit : "function" == typeof init ? init = [init, newInit] : init.push(newInit)); | ||
} | ||
ret.push(init); | ||
} | ||
0 !== kind && (1 === kind ? (desc.get = value.get, desc.set = value.set) : 2 === kind ? desc.value = value : 3 === kind ? desc.get = value : 4 === kind && (desc.set = value), isPrivate ? 1 === kind ? (ret.push(function (instance, args) { | ||
return value.get.call(instance, args); | ||
}), ret.push(function (instance, args) { | ||
return value.set.call(instance, args); | ||
})) : 2 === kind ? ret.push(value) : ret.push(function (instance, args) { | ||
return value.call(instance, args); | ||
}) : Object.defineProperty(base, name, desc)); | ||
} | ||
function applyMemberDecs(Class, decInfos, instanceBrand) { | ||
for (var protoInitializers, staticInitializers, staticBrand, ret = [], existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) { | ||
var decInfo = decInfos[i]; | ||
if (Array.isArray(decInfo)) { | ||
var base, | ||
initializers, | ||
kind = decInfo[1], | ||
name = decInfo[2], | ||
isPrivate = decInfo.length > 3, | ||
isStatic = kind >= 5, | ||
hasPrivateBrand = instanceBrand; | ||
if (isStatic ? (base = Class, 0 !== (kind -= 5) && (initializers = staticInitializers = staticInitializers || []), isPrivate && !staticBrand && (staticBrand = function staticBrand(_) { | ||
return checkInRHS(_) === Class; | ||
}), hasPrivateBrand = staticBrand) : (base = Class.prototype, 0 !== kind && (initializers = protoInitializers = protoInitializers || [])), 0 !== kind && !isPrivate) { | ||
var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields, | ||
existingKind = existingNonFields.get(name) || 0; | ||
if (!0 === existingKind || 3 === existingKind && 4 !== kind || 4 === existingKind && 3 !== kind) throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name); | ||
!existingKind && kind > 2 ? existingNonFields.set(name, kind) : existingNonFields.set(name, !0); | ||
if (0 === kind || 1 === kind) { | ||
if (void 0 === init) init = function init(instance, _init) { | ||
return _init; | ||
};else if ("function" != typeof init) { | ||
var ownInitializers = init; | ||
init = function init(instance, _init2) { | ||
for (var value = _init2, i = 0; i < ownInitializers.length; i++) value = ownInitializers[i].call(instance, value); | ||
return value; | ||
}; | ||
} else { | ||
var originalInitializer = init; | ||
init = function init(instance, _init3) { | ||
return originalInitializer.call(instance, _init3); | ||
}; | ||
} | ||
applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand); | ||
ret.push(init); | ||
} | ||
0 !== kind && (1 === kind ? (desc.get = value.get, desc.set = value.set) : 2 === kind ? desc.value = value : 3 === kind ? desc.get = value : 4 === kind && (desc.set = value), isPrivate ? 1 === kind ? (ret.push(function (instance, args) { | ||
return value.get.call(instance, args); | ||
}), ret.push(function (instance, args) { | ||
return value.set.call(instance, args); | ||
})) : 2 === kind ? ret.push(value) : ret.push(function (instance, args) { | ||
return value.call(instance, args); | ||
}) : Object.defineProperty(base, name, desc)); | ||
} | ||
return pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers), ret; | ||
} | ||
function pushInitializers(ret, initializers) { | ||
initializers && ret.push(function (instance) { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(instance); | ||
return instance; | ||
}); | ||
} | ||
function applyClassDecs(targetClass, classDecs) { | ||
if (classDecs.length > 0) { | ||
for (var initializers = [], newClass = targetClass, name = targetClass.name, i = classDecs.length - 1; i >= 0; i--) { | ||
var decoratorFinishedRef = { | ||
v: !1 | ||
}; | ||
try { | ||
var nextNewClass = classDecs[i](newClass, { | ||
kind: "class", | ||
name: name, | ||
addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef) | ||
}); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
function applyMemberDecs(Class, decInfos, instanceBrand) { | ||
for (var protoInitializers, staticInitializers, staticBrand, ret = [], existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) { | ||
var decInfo = decInfos[i]; | ||
if (Array.isArray(decInfo)) { | ||
var base, | ||
initializers, | ||
kind = decInfo[1], | ||
name = decInfo[2], | ||
isPrivate = decInfo.length > 3, | ||
isStatic = kind >= 5, | ||
hasPrivateBrand = instanceBrand; | ||
if (isStatic ? (base = Class, 0 !== (kind -= 5) && (initializers = staticInitializers = staticInitializers || []), isPrivate && !staticBrand && (staticBrand = function staticBrand(_) { | ||
return checkInRHS(_) === Class; | ||
}), hasPrivateBrand = staticBrand) : (base = Class.prototype, 0 !== kind && (initializers = protoInitializers = protoInitializers || [])), 0 !== kind && !isPrivate) { | ||
var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields, | ||
existingKind = existingNonFields.get(name) || 0; | ||
if (!0 === existingKind || 3 === existingKind && 4 !== kind || 4 === existingKind && 3 !== kind) throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name); | ||
!existingKind && kind > 2 ? existingNonFields.set(name, kind) : existingNonFields.set(name, !0); | ||
} | ||
applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand); | ||
} | ||
void 0 !== nextNewClass && (assertValidReturnValue(10, nextNewClass), newClass = nextNewClass); | ||
} | ||
return [newClass, function () { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(newClass); | ||
}]; | ||
return pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers), ret; | ||
} | ||
function pushInitializers(ret, initializers) { | ||
initializers && ret.push(function (instance) { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(instance); | ||
return instance; | ||
}); | ||
} | ||
return function (targetClass, memberDecs, classDecs, instanceBrand) { | ||
return { | ||
e: applyMemberDecs(targetClass, memberDecs, instanceBrand), | ||
get c() { | ||
return function (targetClass, classDecs) { | ||
if (classDecs.length > 0) { | ||
for (var initializers = [], newClass = targetClass, name = targetClass.name, i = classDecs.length - 1; i >= 0; i--) { | ||
var decoratorFinishedRef = { | ||
v: !1 | ||
}; | ||
try { | ||
var nextNewClass = classDecs[i](newClass, { | ||
kind: "class", | ||
name: name, | ||
addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef) | ||
}); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
} | ||
void 0 !== nextNewClass && (assertValidReturnValue(10, nextNewClass), newClass = nextNewClass); | ||
} | ||
return [newClass, function () { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(newClass); | ||
}]; | ||
} | ||
}(targetClass, classDecs); | ||
} | ||
}; | ||
}; | ||
} | ||
function applyDecs2301(targetClass, memberDecs, classDecs, instanceBrand) { | ||
return { | ||
e: applyMemberDecs(targetClass, memberDecs, instanceBrand), | ||
get c() { | ||
return applyClassDecs(targetClass, classDecs); | ||
} | ||
}; | ||
return (module.exports = applyDecs2301 = applyDecs2301Factory(), module.exports.__esModule = true, module.exports["default"] = module.exports)(targetClass, memberDecs, classDecs, instanceBrand); | ||
} | ||
module.exports = applyDecs2301, module.exports.__esModule = true, module.exports["default"] = module.exports; |
import _typeof from "./typeof.js"; | ||
import checkInRHS from "./checkInRHS.js"; | ||
function createAddInitializerMethod(initializers, decoratorFinishedRef) { | ||
return function (initializer) { | ||
assertNotFinished(decoratorFinishedRef, "addInitializer"), assertCallable(initializer, "An initializer"), initializers.push(initializer); | ||
}; | ||
} | ||
function assertInstanceIfPrivate(has, target) { | ||
if (!has(target)) throw new TypeError("Attempted to access private element on non-instance"); | ||
} | ||
function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand) { | ||
var kindStr; | ||
switch (kind) { | ||
case 1: | ||
kindStr = "accessor"; | ||
break; | ||
case 2: | ||
kindStr = "method"; | ||
break; | ||
case 3: | ||
kindStr = "getter"; | ||
break; | ||
case 4: | ||
kindStr = "setter"; | ||
break; | ||
default: | ||
kindStr = "field"; | ||
function applyDecs2301Factory() { | ||
function createAddInitializerMethod(initializers, decoratorFinishedRef) { | ||
return function (initializer) { | ||
!function (decoratorFinishedRef, fnName) { | ||
if (decoratorFinishedRef.v) throw new Error("attempted to call " + fnName + " after decoration was finished"); | ||
}(decoratorFinishedRef, "addInitializer"), assertCallable(initializer, "An initializer"), initializers.push(initializer); | ||
}; | ||
} | ||
var get, | ||
set, | ||
ctx = { | ||
kind: kindStr, | ||
name: isPrivate ? "#" + name : name, | ||
"static": isStatic, | ||
"private": isPrivate | ||
}, | ||
decoratorFinishedRef = { | ||
v: !1 | ||
function assertInstanceIfPrivate(has, target) { | ||
if (!has(target)) throw new TypeError("Attempted to access private element on non-instance"); | ||
} | ||
function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand) { | ||
var kindStr; | ||
switch (kind) { | ||
case 1: | ||
kindStr = "accessor"; | ||
break; | ||
case 2: | ||
kindStr = "method"; | ||
break; | ||
case 3: | ||
kindStr = "getter"; | ||
break; | ||
case 4: | ||
kindStr = "setter"; | ||
break; | ||
default: | ||
kindStr = "field"; | ||
} | ||
var get, | ||
set, | ||
ctx = { | ||
kind: kindStr, | ||
name: isPrivate ? "#" + name : name, | ||
"static": isStatic, | ||
"private": isPrivate | ||
}, | ||
decoratorFinishedRef = { | ||
v: !1 | ||
}; | ||
if (0 !== kind && (ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef)), isPrivate || 0 !== kind && 2 !== kind) { | ||
if (2 === kind) get = function get(target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.value; | ||
};else { | ||
var t = 0 === kind || 1 === kind; | ||
(t || 3 === kind) && (get = isPrivate ? function (target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.get.call(target); | ||
} : function (target) { | ||
return desc.get.call(target); | ||
}), (t || 4 === kind) && (set = isPrivate ? function (target, value) { | ||
assertInstanceIfPrivate(hasPrivateBrand, target), desc.set.call(target, value); | ||
} : function (target, value) { | ||
desc.set.call(target, value); | ||
}); | ||
} | ||
} else get = function get(target) { | ||
return target[name]; | ||
}, 0 === kind && (set = function set(target, v) { | ||
target[name] = v; | ||
}); | ||
var has = isPrivate ? hasPrivateBrand.bind() : function (target) { | ||
return name in target; | ||
}; | ||
if (0 !== kind && (ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef)), isPrivate || 0 !== kind && 2 !== kind) { | ||
if (2 === kind) get = function get(target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.value; | ||
};else { | ||
var t = 0 === kind || 1 === kind; | ||
(t || 3 === kind) && (get = isPrivate ? function (target) { | ||
return assertInstanceIfPrivate(hasPrivateBrand, target), desc.get.call(target); | ||
} : function (target) { | ||
return desc.get.call(target); | ||
}), (t || 4 === kind) && (set = isPrivate ? function (target, value) { | ||
assertInstanceIfPrivate(hasPrivateBrand, target), desc.set.call(target, value); | ||
} : function (target, value) { | ||
desc.set.call(target, value); | ||
}); | ||
ctx.access = get && set ? { | ||
get: get, | ||
set: set, | ||
has: has | ||
} : get ? { | ||
get: get, | ||
has: has | ||
} : { | ||
set: set, | ||
has: has | ||
}; | ||
try { | ||
return dec(value, ctx); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
} | ||
} else get = function get(target) { | ||
return target[name]; | ||
}, 0 === kind && (set = function set(target, v) { | ||
target[name] = v; | ||
}); | ||
var has = isPrivate ? hasPrivateBrand.bind() : function (target) { | ||
return name in target; | ||
}; | ||
ctx.access = get && set ? { | ||
get: get, | ||
set: set, | ||
has: has | ||
} : get ? { | ||
get: get, | ||
has: has | ||
} : { | ||
set: set, | ||
has: has | ||
}; | ||
try { | ||
return dec(value, ctx); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
} | ||
} | ||
function assertNotFinished(decoratorFinishedRef, fnName) { | ||
if (decoratorFinishedRef.v) throw new Error("attempted to call " + fnName + " after decoration was finished"); | ||
} | ||
function assertCallable(fn, hint) { | ||
if ("function" != typeof fn) throw new TypeError(hint + " must be a function"); | ||
} | ||
function assertValidReturnValue(kind, value) { | ||
var type = _typeof(value); | ||
if (1 === kind) { | ||
if ("object" !== type || null === value) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0"); | ||
void 0 !== value.get && assertCallable(value.get, "accessor.get"), void 0 !== value.set && assertCallable(value.set, "accessor.set"), void 0 !== value.init && assertCallable(value.init, "accessor.init"); | ||
} else if ("function" !== type) { | ||
var hint; | ||
throw hint = 0 === kind ? "field" : 10 === kind ? "class" : "method", new TypeError(hint + " decorators must return a function or void 0"); | ||
function assertCallable(fn, hint) { | ||
if ("function" != typeof fn) throw new TypeError(hint + " must be a function"); | ||
} | ||
} | ||
function curryThis1(fn) { | ||
return function () { | ||
return fn(this); | ||
}; | ||
} | ||
function curryThis2(fn) { | ||
return function (value) { | ||
fn(this, value); | ||
}; | ||
} | ||
function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand) { | ||
var desc, | ||
init, | ||
value, | ||
newValue, | ||
get, | ||
set, | ||
decs = decInfo[0]; | ||
if (isPrivate ? desc = 0 === kind || 1 === kind ? { | ||
get: curryThis1(decInfo[3]), | ||
set: curryThis2(decInfo[4]) | ||
} : 3 === kind ? { | ||
get: decInfo[3] | ||
} : 4 === kind ? { | ||
set: decInfo[3] | ||
} : { | ||
value: decInfo[3] | ||
} : 0 !== kind && (desc = Object.getOwnPropertyDescriptor(base, name)), 1 === kind ? value = { | ||
get: desc.get, | ||
set: desc.set | ||
} : 2 === kind ? value = desc.value : 3 === kind ? value = desc.get : 4 === kind && (value = desc.set), "function" == typeof decs) void 0 !== (newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand)) && (assertValidReturnValue(kind, newValue), 0 === kind ? init = newValue : 1 === kind ? (init = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
get: get, | ||
set: set | ||
}) : value = newValue);else for (var i = decs.length - 1; i >= 0; i--) { | ||
var newInit; | ||
if (void 0 !== (newValue = memberDec(decs[i], name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand))) assertValidReturnValue(kind, newValue), 0 === kind ? newInit = newValue : 1 === kind ? (newInit = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
function assertValidReturnValue(kind, value) { | ||
var type = _typeof(value); | ||
if (1 === kind) { | ||
if ("object" !== type || null === value) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0"); | ||
void 0 !== value.get && assertCallable(value.get, "accessor.get"), void 0 !== value.set && assertCallable(value.set, "accessor.set"), void 0 !== value.init && assertCallable(value.init, "accessor.init"); | ||
} else if ("function" !== type) { | ||
var hint; | ||
throw hint = 0 === kind ? "field" : 10 === kind ? "class" : "method", new TypeError(hint + " decorators must return a function or void 0"); | ||
} | ||
} | ||
function curryThis2(fn) { | ||
return function (value) { | ||
fn(this, value); | ||
}; | ||
} | ||
function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand) { | ||
var desc, | ||
init, | ||
value, | ||
fn, | ||
newValue, | ||
get, | ||
set, | ||
decs = decInfo[0]; | ||
if (isPrivate ? desc = 0 === kind || 1 === kind ? { | ||
get: (fn = decInfo[3], function () { | ||
return fn(this); | ||
}), | ||
set: curryThis2(decInfo[4]) | ||
} : 3 === kind ? { | ||
get: decInfo[3] | ||
} : 4 === kind ? { | ||
set: decInfo[3] | ||
} : { | ||
value: decInfo[3] | ||
} : 0 !== kind && (desc = Object.getOwnPropertyDescriptor(base, name)), 1 === kind ? value = { | ||
get: desc.get, | ||
set: desc.set | ||
} : 2 === kind ? value = desc.value : 3 === kind ? value = desc.get : 4 === kind && (value = desc.set), "function" == typeof decs) void 0 !== (newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand)) && (assertValidReturnValue(kind, newValue), 0 === kind ? init = newValue : 1 === kind ? (init = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
get: get, | ||
set: set | ||
}) : value = newValue, void 0 !== newInit && (void 0 === init ? init = newInit : "function" == typeof init ? init = [init, newInit] : init.push(newInit)); | ||
} | ||
if (0 === kind || 1 === kind) { | ||
if (void 0 === init) init = function init(instance, _init) { | ||
return _init; | ||
};else if ("function" != typeof init) { | ||
var ownInitializers = init; | ||
init = function init(instance, _init2) { | ||
for (var value = _init2, i = 0; i < ownInitializers.length; i++) value = ownInitializers[i].call(instance, value); | ||
return value; | ||
}; | ||
} else { | ||
var originalInitializer = init; | ||
init = function init(instance, _init3) { | ||
return originalInitializer.call(instance, _init3); | ||
}; | ||
}) : value = newValue);else for (var i = decs.length - 1; i >= 0; i--) { | ||
var newInit; | ||
if (void 0 !== (newValue = memberDec(decs[i], name, desc, initializers, kind, isStatic, isPrivate, value, hasPrivateBrand))) assertValidReturnValue(kind, newValue), 0 === kind ? newInit = newValue : 1 === kind ? (newInit = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = { | ||
get: get, | ||
set: set | ||
}) : value = newValue, void 0 !== newInit && (void 0 === init ? init = newInit : "function" == typeof init ? init = [init, newInit] : init.push(newInit)); | ||
} | ||
ret.push(init); | ||
} | ||
0 !== kind && (1 === kind ? (desc.get = value.get, desc.set = value.set) : 2 === kind ? desc.value = value : 3 === kind ? desc.get = value : 4 === kind && (desc.set = value), isPrivate ? 1 === kind ? (ret.push(function (instance, args) { | ||
return value.get.call(instance, args); | ||
}), ret.push(function (instance, args) { | ||
return value.set.call(instance, args); | ||
})) : 2 === kind ? ret.push(value) : ret.push(function (instance, args) { | ||
return value.call(instance, args); | ||
}) : Object.defineProperty(base, name, desc)); | ||
} | ||
function applyMemberDecs(Class, decInfos, instanceBrand) { | ||
for (var protoInitializers, staticInitializers, staticBrand, ret = [], existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) { | ||
var decInfo = decInfos[i]; | ||
if (Array.isArray(decInfo)) { | ||
var base, | ||
initializers, | ||
kind = decInfo[1], | ||
name = decInfo[2], | ||
isPrivate = decInfo.length > 3, | ||
isStatic = kind >= 5, | ||
hasPrivateBrand = instanceBrand; | ||
if (isStatic ? (base = Class, 0 !== (kind -= 5) && (initializers = staticInitializers = staticInitializers || []), isPrivate && !staticBrand && (staticBrand = function staticBrand(_) { | ||
return checkInRHS(_) === Class; | ||
}), hasPrivateBrand = staticBrand) : (base = Class.prototype, 0 !== kind && (initializers = protoInitializers = protoInitializers || [])), 0 !== kind && !isPrivate) { | ||
var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields, | ||
existingKind = existingNonFields.get(name) || 0; | ||
if (!0 === existingKind || 3 === existingKind && 4 !== kind || 4 === existingKind && 3 !== kind) throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name); | ||
!existingKind && kind > 2 ? existingNonFields.set(name, kind) : existingNonFields.set(name, !0); | ||
if (0 === kind || 1 === kind) { | ||
if (void 0 === init) init = function init(instance, _init) { | ||
return _init; | ||
};else if ("function" != typeof init) { | ||
var ownInitializers = init; | ||
init = function init(instance, _init2) { | ||
for (var value = _init2, i = 0; i < ownInitializers.length; i++) value = ownInitializers[i].call(instance, value); | ||
return value; | ||
}; | ||
} else { | ||
var originalInitializer = init; | ||
init = function init(instance, _init3) { | ||
return originalInitializer.call(instance, _init3); | ||
}; | ||
} | ||
applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand); | ||
ret.push(init); | ||
} | ||
0 !== kind && (1 === kind ? (desc.get = value.get, desc.set = value.set) : 2 === kind ? desc.value = value : 3 === kind ? desc.get = value : 4 === kind && (desc.set = value), isPrivate ? 1 === kind ? (ret.push(function (instance, args) { | ||
return value.get.call(instance, args); | ||
}), ret.push(function (instance, args) { | ||
return value.set.call(instance, args); | ||
})) : 2 === kind ? ret.push(value) : ret.push(function (instance, args) { | ||
return value.call(instance, args); | ||
}) : Object.defineProperty(base, name, desc)); | ||
} | ||
return pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers), ret; | ||
} | ||
function pushInitializers(ret, initializers) { | ||
initializers && ret.push(function (instance) { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(instance); | ||
return instance; | ||
}); | ||
} | ||
function applyClassDecs(targetClass, classDecs) { | ||
if (classDecs.length > 0) { | ||
for (var initializers = [], newClass = targetClass, name = targetClass.name, i = classDecs.length - 1; i >= 0; i--) { | ||
var decoratorFinishedRef = { | ||
v: !1 | ||
}; | ||
try { | ||
var nextNewClass = classDecs[i](newClass, { | ||
kind: "class", | ||
name: name, | ||
addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef) | ||
}); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
function applyMemberDecs(Class, decInfos, instanceBrand) { | ||
for (var protoInitializers, staticInitializers, staticBrand, ret = [], existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) { | ||
var decInfo = decInfos[i]; | ||
if (Array.isArray(decInfo)) { | ||
var base, | ||
initializers, | ||
kind = decInfo[1], | ||
name = decInfo[2], | ||
isPrivate = decInfo.length > 3, | ||
isStatic = kind >= 5, | ||
hasPrivateBrand = instanceBrand; | ||
if (isStatic ? (base = Class, 0 !== (kind -= 5) && (initializers = staticInitializers = staticInitializers || []), isPrivate && !staticBrand && (staticBrand = function staticBrand(_) { | ||
return checkInRHS(_) === Class; | ||
}), hasPrivateBrand = staticBrand) : (base = Class.prototype, 0 !== kind && (initializers = protoInitializers = protoInitializers || [])), 0 !== kind && !isPrivate) { | ||
var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields, | ||
existingKind = existingNonFields.get(name) || 0; | ||
if (!0 === existingKind || 3 === existingKind && 4 !== kind || 4 === existingKind && 3 !== kind) throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name); | ||
!existingKind && kind > 2 ? existingNonFields.set(name, kind) : existingNonFields.set(name, !0); | ||
} | ||
applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, hasPrivateBrand); | ||
} | ||
void 0 !== nextNewClass && (assertValidReturnValue(10, nextNewClass), newClass = nextNewClass); | ||
} | ||
return [newClass, function () { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(newClass); | ||
}]; | ||
return pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers), ret; | ||
} | ||
function pushInitializers(ret, initializers) { | ||
initializers && ret.push(function (instance) { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(instance); | ||
return instance; | ||
}); | ||
} | ||
return function (targetClass, memberDecs, classDecs, instanceBrand) { | ||
return { | ||
e: applyMemberDecs(targetClass, memberDecs, instanceBrand), | ||
get c() { | ||
return function (targetClass, classDecs) { | ||
if (classDecs.length > 0) { | ||
for (var initializers = [], newClass = targetClass, name = targetClass.name, i = classDecs.length - 1; i >= 0; i--) { | ||
var decoratorFinishedRef = { | ||
v: !1 | ||
}; | ||
try { | ||
var nextNewClass = classDecs[i](newClass, { | ||
kind: "class", | ||
name: name, | ||
addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef) | ||
}); | ||
} finally { | ||
decoratorFinishedRef.v = !0; | ||
} | ||
void 0 !== nextNewClass && (assertValidReturnValue(10, nextNewClass), newClass = nextNewClass); | ||
} | ||
return [newClass, function () { | ||
for (var i = 0; i < initializers.length; i++) initializers[i].call(newClass); | ||
}]; | ||
} | ||
}(targetClass, classDecs); | ||
} | ||
}; | ||
}; | ||
} | ||
export default function applyDecs2301(targetClass, memberDecs, classDecs, instanceBrand) { | ||
return { | ||
e: applyMemberDecs(targetClass, memberDecs, instanceBrand), | ||
get c() { | ||
return applyClassDecs(targetClass, classDecs); | ||
} | ||
}; | ||
return (applyDecs2301 = applyDecs2301Factory())(targetClass, memberDecs, classDecs, instanceBrand); | ||
} |
export default function _initializerWarningHelper(descriptor, context) { | ||
throw new Error('Decorating class property failed. Please ensure that ' + 'proposal-class-properties is enabled and runs after the decorators transform.'); | ||
throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); | ||
} |
function _initializerWarningHelper(descriptor, context) { | ||
throw new Error('Decorating class property failed. Please ensure that ' + 'proposal-class-properties is enabled and runs after the decorators transform.'); | ||
throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); | ||
} | ||
module.exports = _initializerWarningHelper, module.exports.__esModule = true, module.exports["default"] = module.exports; |
{ | ||
"name": "@babel/runtime", | ||
"version": "7.21.5", | ||
"version": "7.22.6", | ||
"description": "babel's modular runtime helpers", | ||
@@ -74,2 +74,11 @@ "license": "MIT", | ||
"./helpers/esm/applyDecs2301": "./helpers/esm/applyDecs2301.js", | ||
"./helpers/applyDecs2305": [ | ||
{ | ||
"node": "./helpers/applyDecs2305.js", | ||
"import": "./helpers/esm/applyDecs2305.js", | ||
"default": "./helpers/applyDecs2305.js" | ||
}, | ||
"./helpers/applyDecs2305.js" | ||
], | ||
"./helpers/esm/applyDecs2305": "./helpers/esm/applyDecs2305.js", | ||
"./helpers/asyncGeneratorDelegate": [ | ||
@@ -120,2 +129,11 @@ { | ||
"./helpers/esm/defineAccessor": "./helpers/esm/defineAccessor.js", | ||
"./helpers/dispose": [ | ||
{ | ||
"node": "./helpers/dispose.js", | ||
"import": "./helpers/esm/dispose.js", | ||
"default": "./helpers/dispose.js" | ||
}, | ||
"./helpers/dispose.js" | ||
], | ||
"./helpers/esm/dispose": "./helpers/esm/dispose.js", | ||
"./helpers/iterableToArrayLimit": [ | ||
@@ -175,2 +193,11 @@ { | ||
"./helpers/esm/typeof": "./helpers/esm/typeof.js", | ||
"./helpers/using": [ | ||
{ | ||
"node": "./helpers/using.js", | ||
"import": "./helpers/esm/using.js", | ||
"default": "./helpers/using.js" | ||
}, | ||
"./helpers/using.js" | ||
], | ||
"./helpers/esm/using": "./helpers/esm/using.js", | ||
"./helpers/wrapRegExp": [ | ||
@@ -177,0 +204,0 @@ { |
@@ -5,3 +5,3 @@ # @babel/runtime | ||
See our website [@babel/runtime](https://babeljs.io/docs/en/babel-runtime) for more information. | ||
See our website [@babel/runtime](https://babeljs.io/docs/babel-runtime) for more information. | ||
@@ -8,0 +8,0 @@ ## Install |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
281803
211
5566