(receiver, state, kind, f)
| 285 | } |
| 286 | |
| 287 | export function __classPrivateFieldGet(receiver, state, kind, f) { |
| 288 | if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); |
| 289 | if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); |
| 290 | return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); |
| 291 | } |
| 292 | |
| 293 | export function __classPrivateFieldSet(receiver, state, value, kind, f) { |
| 294 | if (kind === "m") throw new TypeError("Private method is not writable"); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…