about summary refs log tree commit diff
path: root/src/etc/lldb_commands
AgeCommit message (Collapse)AuthorLines
2025-02-12fix string and tuple struct formattingWalnut-0/+1
2025-01-10add alternate inner type lookup for vec/string for missing template argsWalnut-2/+2
2025-01-10add MSVC str providersWalnut-3/+6
2025-01-10organize lldb_commandsWalnut-25/+50
2025-01-10add msvc enum providersWalnut-2/+4
2025-01-10add MSVC slice providersWalnut-0/+2
2025-01-10add MSVC tuple providersWalnut-1/+5
2024-11-29add explicit synthetic lookup for tuplesWalnut-0/+1
2024-11-28force expanded formatting for non-synthetic typesWalnut-0/+1
2024-11-17restrict synthetic types to standard library typesWalnut-1/+20
2024-03-29Add rust-lldb pretty printing for Path and PathBufNathan Henrie-0/+3
Fixes https://github.com/rust-lang/rust/issues/120553 Fixes https://github.com/rust-lang/rust/issues/48462
2024-03-14Fix `StdNonZeroNumberSummaryProvider`.Markus Reiter-1/+1
2024-03-14Try fixing `debuginfo` test.Markus Reiter-1/+1
2022-08-24Add GDB/LLDB pretty-printers for NonZero typesArtem Mukhin-0/+1
2021-07-03Support pretty printing slices using GDBEFanZh-2/+2
2020-10-06Remove redundant backslashes from `lldb_commands`ortem-17/+17
2020-08-28Fix loading pretty-printers in rust-lldb scriptortem-1/+0
2020-06-09Implement new gdb/lldb pretty-printersortem-0/+19
Replace old GDB and LLDB pretty-printers with new ones which were originally written for IntelliJ Rust. New LLDB pretty-printers support synthetic children. New GDB/LLDB pretty-printers support all Rust types supported by old pretty-printers, and also support: Rc, Arc, Cell, Ref, RefCell, RefMut, HashMap, HashSet.