Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
273e4df
feat: add compare-heapsnapshots command for offline heap snapshot com…
aeroxy Jul 3, 2026
612a303
fix: improve sorting of snapshot diffs by class name as a secondary c…
aeroxy Jul 4, 2026
9f5098e
refactor: improve readability and consistency
aeroxy Jul 5, 2026
e91d0ee
perf(memory): reduce allocations and peak memory during snapshot diff
aeroxy Jul 6, 2026
2b3f4fd
feat: improve Chrome devtools connection handling and safeguard daemo…
aeroxy Jul 7, 2026
15b1efb
fix(memory): validate snapshot integrity and standardize error handling
aeroxy Jul 7, 2026
ef2fcb6
refactor(memory): simplify class aggregate handling and update snapsh…
aeroxy Jul 7, 2026
3f178a6
refactor(memory): optimize class aggregate handling in build_class_ag…
aeroxy Jul 7, 2026
2e24379
refactor(memory): optimize snapshot diff processing by modifying argu…
aeroxy Jul 7, 2026
f1a4712
refactor(memory): streamline class aggregate handling and improve CSV…
aeroxy Jul 8, 2026
093bfa6
refactor(memory): optimize class aggregate insertion to reduce alloca…
aeroxy Jul 8, 2026
cfb3705
refactor(memory): extract node field offset resolution to improve cla…
aeroxy Jul 9, 2026
41f6c67
refactor(memory): enhance class aggregation by introducing type-based…
aeroxy Jul 9, 2026
5a52e58
feat: enhance heap snapshot diffing, validation, and offline tooling
aeroxy Jul 10, 2026
32dea10
perf: optimize heap snapshot diff detail computation and ID overlap d…
aeroxy Jul 10, 2026
9ae27ee
refactor: simplify error handling in heap snapshot capture
aeroxy Jul 10, 2026
0c9120b
refactor: improve kill daemon decision logic for interactive prompts
aeroxy Jul 11, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/commands/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ pub fn known_args(cmd: &str) -> &'static [&'static str] {
"read-page" => &["output"],
"take-heapsnapshot" => &["output"],
"inspect-heapsnapshot-node" => &["file_path", "node_id"],
"compare-heapsnapshots" => &["base", "current", "class_index"],
"emulate" => &[
"viewport",
"device_scale_factor",
Expand Down
Loading