(a, b, weaklyPresent)
| 8697 | return weaklyPresent ? true : weaklyPresent === result; |
| 8698 | } |
| 8699 | add(a, b, weaklyPresent) { |
| 8700 | const map = this._data.get(a); |
| 8701 | if (map === void 0) { |
| 8702 | this._data.set(a, /* @__PURE__ */ new Map([[b, weaklyPresent]])); |
| 8703 | } else { |
| 8704 | map.set(b, weaklyPresent); |
| 8705 | } |
| 8706 | } |
| 8707 | }; |
| 8708 | var PairSet = class { |
| 8709 | constructor() { |
no test coverage detected