mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Merge pull request #18401 from Veykril/veykril/push-ulpowvsymyys
minor: Remove intermediate allocations
This commit is contained in:
commit
fc4586e3b6
2 changed files with 2 additions and 3 deletions
|
@ -214,8 +214,7 @@ impl<'a> SymbolCollector<'a> {
|
|||
|
||||
fn collect_from_impl(&mut self, impl_id: ImplId) {
|
||||
let impl_data = self.db.impl_data(impl_id);
|
||||
let impl_name =
|
||||
Some(SmolStr::new(impl_data.self_ty.display(self.db, self.edition).to_string()));
|
||||
let impl_name = Some(impl_data.self_ty.display(self.db, self.edition).to_smolstr());
|
||||
self.with_container_name(impl_name, |s| {
|
||||
for &assoc_item_id in impl_data.items.iter() {
|
||||
s.push_assoc_item(assoc_item_id)
|
||||
|
|
|
@ -190,7 +190,7 @@ impl RawPattern {
|
|||
let mut res = FxHashMap::default();
|
||||
for t in &self.tokens {
|
||||
if let PatternElement::Placeholder(placeholder) = t {
|
||||
res.insert(SmolStr::new(placeholder.stand_in_name.clone()), placeholder.clone());
|
||||
res.insert(SmolStr::new(&placeholder.stand_in_name), placeholder.clone());
|
||||
}
|
||||
}
|
||||
res
|
||||
|
|
Loading…
Reference in a new issue