Skip to content

Commit 6131cf3

Browse files
bors[bot]matklad
andauthored
Merge #3480
3480: Add with_use_tree r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 parents c3a349b + 381ace5 commit 6131cf3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

crates/ra_syntax/src/ast/edit.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,16 @@ impl ast::PathSegment {
249249
}
250250
}
251251

252+
impl ast::UseItem {
253+
#[must_use]
254+
pub fn with_use_tree(&self, use_tree: ast::UseTree) -> ast::UseItem {
255+
if let Some(old) = self.use_tree() {
256+
return replace_descendants(self, iter::once((old, use_tree)));
257+
}
258+
self.clone()
259+
}
260+
}
261+
252262
#[must_use]
253263
pub fn strip_attrs_and_docs<N: ast::AttrsOwner>(node: &N) -> N {
254264
N::cast(strip_attrs_and_docs_inner(node.syntax().clone())).unwrap()

0 commit comments

Comments
 (0)