File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)R
16
16
type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust
17
17
type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust
18
18
type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust
19
- type summary add -F lldb_lookup.summary_lookup -e -x -h "^std::path::PathBuf$" --category Rust
20
19
type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?std::path::Path$" --category Rust
20
+ type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust
21
21
type category enable Rust
Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ class RustType(object):
53
53
STD_REF_MUT_REGEX = re .compile (r"^(core::(\w+::)+)RefMut<.+>$" )
54
54
STD_REF_CELL_REGEX = re .compile (r"^(core::(\w+::)+)RefCell<.+>$" )
55
55
STD_NONZERO_NUMBER_REGEX = re .compile (r"^core::num::([a-z_]+::)*NonZero.+$" )
56
- STD_PATHBUF_REGEX = re .compile (r"^std::path::PathBuf$" )
57
56
STD_PATH_REGEX = re .compile (r"^&(mut )?std::path::Path$" )
57
+ STD_PATHBUF_REGEX = re .compile (r"^(std::([a-z_]+::)+)PathBuf$" )
58
58
59
59
TUPLE_ITEM_REGEX = re .compile (r"__\d+$" )
60
60
Original file line number Diff line number Diff line change @@ -1494,8 +1494,8 @@ impl<'test> TestCx<'test> {
1494
1494
"^(core::([a-z_]+::)+)RefMut<.+>$" ,
1495
1495
"^(core::([a-z_]+::)+)RefCell<.+>$" ,
1496
1496
"^core::num::([a-z_]+::)*NonZero.+$" ,
1497
- "^std::path::PathBuf$" ,
1498
1497
"^&(mut )?std::path::Path$" ,
1498
+ "^(std::([a-z_]+::)+)PathBuf$" ,
1499
1499
] ;
1500
1500
1501
1501
// In newer versions of lldb, persistent results (the `$N =` part at the start of
You can’t perform that action at this time.
0 commit comments