├── .gitignore ├── README.md ├── heap.heapsnapshot ├── package.json ├── sample.heapsnapshot ├── src ├── JavascriptHeapInspector.ts └── lib │ ├── AllocationProfile.ts │ ├── BalancedJsonTokenizer.ts │ ├── HeapSnapshot.ts │ ├── HeapSnapshotGridNodes.ts │ ├── HeapSnapshotLoader.ts │ ├── HeapSnapshotModel.ts │ ├── HeapSnapshotWorkerDispatcher.ts │ ├── array-utilities.ts │ └── platform.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/README.md -------------------------------------------------------------------------------- /heap.heapsnapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/heap.heapsnapshot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/package.json -------------------------------------------------------------------------------- /sample.heapsnapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/sample.heapsnapshot -------------------------------------------------------------------------------- /src/JavascriptHeapInspector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/JavascriptHeapInspector.ts -------------------------------------------------------------------------------- /src/lib/AllocationProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/AllocationProfile.ts -------------------------------------------------------------------------------- /src/lib/BalancedJsonTokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/BalancedJsonTokenizer.ts -------------------------------------------------------------------------------- /src/lib/HeapSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/HeapSnapshot.ts -------------------------------------------------------------------------------- /src/lib/HeapSnapshotGridNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/HeapSnapshotGridNodes.ts -------------------------------------------------------------------------------- /src/lib/HeapSnapshotLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/HeapSnapshotLoader.ts -------------------------------------------------------------------------------- /src/lib/HeapSnapshotModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/HeapSnapshotModel.ts -------------------------------------------------------------------------------- /src/lib/HeapSnapshotWorkerDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/HeapSnapshotWorkerDispatcher.ts -------------------------------------------------------------------------------- /src/lib/array-utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/array-utilities.ts -------------------------------------------------------------------------------- /src/lib/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/src/lib/platform.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonluca/javascript-heap-inspector/HEAD/yarn.lock --------------------------------------------------------------------------------