File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ 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::num::([a-z_]+::)*NonZero.+$" --category Rust
19
19
type summary add -F lldb_lookup.summary_lookup -e -x -h "^std::path::PathBuf$" --category Rust
20
- type summary add -F lldb_lookup.summary_lookup -e -x -h "^&std::path::Path$" --category Rust
20
+ type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )? std::path::Path$" --category Rust
21
21
type category enable Rust
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class RustType(object):
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
56
STD_PATHBUF_REGEX = re .compile (r"^std::path::PathBuf$" )
57
- STD_PATH_REGEX = re .compile (r"^&std::path::Path$" )
57
+ STD_PATH_REGEX = re .compile (r"^&(mut )? std::path::Path$" )
58
58
59
59
TUPLE_ITEM_REGEX = re .compile (r"__\d+$" )
60
60
You can’t perform that action at this time.
0 commit comments