(f)
| 114 | |
| 115 | __esDecorate = function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) { |
| 116 | function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; } |
| 117 | var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value"; |
| 118 | var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null; |
| 119 | var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {}); |
no outgoing calls
no test coverage detected
searching dependent graphs…