(key)
| 16350 | return this.map.get(key) || /* @__PURE__ */ new Set(); |
| 16351 | } |
| 16352 | has(key) { |
| 16353 | return this.map.has(key); |
| 16354 | } |
| 16355 | hasValue(key, value) { |
| 16356 | const set = this.map.get(key); |
| 16357 | if (!set) { |
no outgoing calls
no test coverage detected