(bm: BrowserManager)
| 110 | |
| 111 | /** Entry point used by the /memory HTTP endpoint — same data, always JSON. */ |
| 112 | export async function buildMemorySnapshotJson(bm: BrowserManager): Promise<MemorySnapshot> { |
| 113 | const structures = collectStructureStats(); |
| 114 | return bm.getMemorySnapshot(structures); |
| 115 | } |
no test coverage detected