File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)R
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::([a-z_]+::)+)NonZero<.+>$" --category Rust
19
19
type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust
20
- type summary add -F lldb_lookup.summary_lookup -e -x -h "^std::path::PathBuf$" --category Rust
21
20
type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?std::path::Path$" --category Rust
21
+ type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust
22
22
type category enable Rust
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ class RustType(object):
67
67
STD_REF_MUT_REGEX = re .compile (r"^(core::(\w+::)+)RefMut<.+>$" )
68
68
STD_REF_CELL_REGEX = re .compile (r"^(core::(\w+::)+)RefCell<.+>$" )
69
69
STD_NONZERO_NUMBER_REGEX = re .compile (r"^core::num::([a-z_]+::)*NonZero.+$" )
70
- STD_PATHBUF_REGEX = re .compile (r"^std::path::PathBuf$" )
71
70
STD_PATH_REGEX = re .compile (r"^&(mut )?std::path::Path$" )
71
+ STD_PATHBUF_REGEX = re .compile (r"^(std::([a-z_]+::)+)PathBuf$" )
72
72
73
73
TUPLE_ITEM_REGEX = re .compile (r"__\d+$" )
74
74
You can’t perform that action at this time.
0 commit comments