(count: number)
| 500 | |
| 501 | |
| 502 | recordEvictions(count: number): void { |
| 503 | this.#statsCounter.recordEvictions(count); |
| 504 | } |
| 505 | |
| 506 | recordHits(count: number): void { |
| 507 | this.#statsCounter.recordHits(count); |
nothing calls this directly
no test coverage detected