Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
//! See [`PathTransform`].

use crate::helpers::mod_path_to_ast;
use either::Either;
use hir::{
    AsAssocItem, FindPathConfig, HirDisplay, HirFileId, ModuleDef, SemanticsScope,
    prettify_macro_expansion,
};
use itertools::Itertools;
use rustc_hash::FxHashMap;
use span::Edition;
use syntax::{
    NodeOrToken, SyntaxNode,
    ast::{self, AstNode, HasGenericArgs, HasName, make},
    syntax_editor::{self, SyntaxEditor},
};

#[derive(Default, Debug)]
struct AstSubsts {
    types_and_consts: Vec<TypeOrConst>,
    lifetimes: Vec<ast::LifetimeArg>,
}

#[derive(Debug)]
enum TypeOrConst {
    Either(ast::TypeArg), // indistinguishable type or const param
    Const(ast::ConstArg),
}

type LifetimeName = String;
type DefaultedParam = Either<hir::TypeParam, hir::ConstParam>;

/// `PathTransform` substitutes path in SyntaxNodes in bulk.
///
/// This is mostly useful for IDE code generation. If you paste some existing
/// code into a new context (for example, to add method overrides to an `impl`
/// block), you generally want to appropriately qualify the names, and sometimes
/// you might want to substitute generic parameters as well:
///
/// ```ignore
/// mod x {
///   pub struct A<V>;
///   pub trait T<U> { fn foo(&self, _: U) -> A<U>; }
/// }
///
/// mod y {
///   use x::T;
///
///   impl T<()> for () {
///      // If we invoke **Add Missing Members** here, we want to copy-paste `foo`.
///      // But we want a slightly-modified version of it:
///      fn foo(&self, _: ()) -> x::A<()> {}
///   }
/// }
/// ```
pub struct PathTransform<'a> {
    generic_def: Option<hir::GenericDef>,
    substs: AstSubsts,
    target_scope: &'a SemanticsScope<'a>,
    source_scope: &'a SemanticsScope<'a>,
}

impl<'a> PathTransform<'a> {
    pub fn trait_impl(
        target_scope: &'a SemanticsScope<'a>,
        source_scope: &'a SemanticsScope<'a>,
        trait_: hir::Trait,
        impl_: ast::Impl,
    ) -> PathTransform<'a> {
        PathTransform {
            source_scope,
            target_scope,
            generic_def: Some(trait_.into()),
            substs: get_syntactic_substs(impl_).unwrap_or_default(),
        }
    }

    pub fn function_call(
        target_scope: &'a SemanticsScope<'a>,
        source_scope: &'a SemanticsScope<'a>,
        function: hir::Function,
        generic_arg_list: ast::GenericArgList,
    ) -> PathTransform<'a> {
        PathTransform {
            source_scope,
            target_scope,
            generic_def: Some(function.into()),
            substs: get_type_args_from_arg_list(generic_arg_list).unwrap_or_default(),
        }
    }

    pub fn impl_transformation(
        target_scope: &'a SemanticsScope<'a>,
        source_scope: &'a SemanticsScope<'a>,
        impl_: hir::Impl,
        generic_arg_list: ast::GenericArgList,
    ) -> PathTransform<'a> {
        PathTransform {
            source_scope,
            target_scope,
            generic_def: Some(impl_.into()),
            substs: get_type_args_from_arg_list(generic_arg_list).unwrap_or_default(),
        }
    }

    pub fn adt_transformation(
        target_scope: &'a SemanticsScope<'a>,
        source_scope: &'a SemanticsScope<'a>,
        adt: hir::Adt,
        generic_arg_list: ast::GenericArgList,
    ) -> PathTransform<'a> {
        PathTransform {
            source_scope,
            target_scope,
            generic_def: Some(adt.into()),
            substs: get_type_args_from_arg_list(generic_arg_list).unwrap_or_default(),
        }
    }

    pub fn generic_transformation(
        target_scope: &'a SemanticsScope<'a>,
        source_scope: &'a SemanticsScope<'a>,
    ) -> PathTransform<'a> {
        PathTransform {
            source_scope,
            target_scope,
            generic_def: None,
            substs: AstSubsts::default(),
        }
    }

    #[must_use]
    pub fn apply(&self, syntax: &SyntaxNode) -> SyntaxNode {
        self.build_ctx().apply(syntax)
    }

    #[must_use]
    pub fn apply_all<'b>(
        &self,
        nodes: impl IntoIterator<Item = &'b SyntaxNode>,
    ) -> Vec<SyntaxNode> {
        let ctx = self.build_ctx();
        nodes.into_iter().map(|node| ctx.apply(&node.clone())).collect()
    }

    fn prettify_target_node(&self, node: SyntaxNode) -> SyntaxNode {
        match self.target_scope.file_id() {
            HirFileId::FileId(_) => node,
            HirFileId::MacroFile(file_id) => {
                let db = self.target_scope.db;
                prettify_macro_expansion(
                    db,
                    node,
                    &db.expansion_span_map(file_id),
                    self.target_scope.module().krate(db).into(),
                )
            }
        }
    }

    fn prettify_target_ast<N: AstNode>(&self, node: N) -> N {
        N::cast(self.prettify_target_node(node.syntax().clone())).unwrap()
    }

    fn build_ctx(&self) -> Ctx<'a> {
        let db = self.source_scope.db;
        let target_module = self.target_scope.module();
        let source_module = self.source_scope.module();
        let skip = match self.generic_def {
            // this is a trait impl, so we need to skip the first type parameter (i.e. Self) -- this is a bit hacky
            Some(hir::GenericDef::Trait(_)) => 1,
            _ => 0,
        };
        let mut type_substs: FxHashMap<hir::TypeParam, ast::Type> = Default::default();
        let mut const_substs: FxHashMap<hir::ConstParam, SyntaxNode> = Default::default();
        let mut defaulted_params: Vec<DefaultedParam> = Default::default();
        let target_edition = target_module.krate(db).edition(self.source_scope.db);
        self.generic_def
            .into_iter()
            .flat_map(|it| it.type_or_const_params(db))
            .skip(skip)
            // The actual list of trait type parameters may be longer than the one
            // used in the `impl` block due to trailing default type parameters.
            // For that case we extend the `substs` with an empty iterator so we
            // can still hit those trailing values and check if they actually have
            // a default type. If they do, go for that type from `hir` to `ast` so
            // the resulting change can be applied correctly.
            .zip(self.substs.types_and_consts.iter().map(Some).chain(std::iter::repeat(None)))
            .for_each(|(k, v)| match (k.split(db), v) {
                (Either::Right(k), Some(TypeOrConst::Either(v))) => {
                    if let Some(ty) = v.ty() {
                        type_substs.insert(k, self.prettify_target_ast(ty));
                    }
                }
                (Either::Right(k), None) => {
                    if let Some(default) = k.default(db)
                        && let Some(default) =
                            &default.display_source_code(db, source_module.into(), false).ok()
                    {
                        type_substs.insert(k, make::ty(default).clone_for_update());
                        defaulted_params.push(Either::Left(k));
                    }
                }
                (Either::Left(k), Some(TypeOrConst::Either(v))) => {
                    if let Some(ty) = v.ty() {
                        const_substs.insert(k, self.prettify_target_node(ty.syntax().clone()));
                    }
                }
                (Either::Left(k), Some(TypeOrConst::Const(v))) => {
                    if let Some(expr) = v.expr() {
                        // FIXME: expressions in curly brackets can cause ambiguity after insertion
                        // (e.g. `N * 2` -> `{1 + 1} * 2`; it's unclear whether `{1 + 1}`
                        // is a standalone statement or a part of another expression)
                        // and sometimes require slight modifications; see
                        // https://doc.rust-lang.org/reference/statements.html#expression-statements
                        // (default values in curly brackets can cause the same problem)
                        const_substs.insert(k, self.prettify_target_node(expr.syntax().clone()));
                    }
                }
                (Either::Left(k), None) => {
                    if let Some(default) =
                        k.default(db, target_module.krate(db).to_display_target(db))
                        && let Some(default) = default.expr()
                    {
                        const_substs.insert(k, default.syntax().clone_for_update());
                        defaulted_params.push(Either::Right(k));
                    }
                }
                _ => (), // ignore mismatching params
            });
        // No need to prettify lifetimes, there's nothing to prettify.
        let lifetime_substs: FxHashMap<_, _> = self
            .generic_def
            .into_iter()
            .flat_map(|it| it.lifetime_params(db))
            .zip(self.substs.lifetimes.clone())
            .filter_map(|(k, v)| {
                Some((k.name(db).display(db, target_edition).to_string(), v.lifetime()?))
            })
            .collect();
        let mut ctx = Ctx {
            type_substs,
            const_substs,
            lifetime_substs,
            target_module,
            source_scope: self.source_scope,
            same_self_type: self.target_scope.has_same_self_type(self.source_scope),
            target_edition,
        };
        ctx.transform_default_values(defaulted_params);
        ctx
    }
}

struct Ctx<'a> {
    type_substs: FxHashMap<hir::TypeParam, ast::Type>,
    const_substs: FxHashMap<hir::ConstParam, SyntaxNode>,
    lifetime_substs: FxHashMap<LifetimeName, ast::Lifetime>,
    target_module: hir::Module,
    source_scope: &'a SemanticsScope<'a>,
    same_self_type: bool,
    target_edition: Edition,
}

fn preorder_rev(item: &SyntaxNode) -> impl Iterator<Item = SyntaxNode> {
    let x = item
        .preorder()
        .filter_map(|event| match event {
            syntax::WalkEvent::Enter(node) => Some(node),
            syntax::WalkEvent::Leave(_) => None,
        })
        .collect_vec();
    x.into_iter().rev()
}

impl Ctx<'_> {
    fn apply(&self, item: &SyntaxNode) -> SyntaxNode {
        // `transform_path` may update a node's parent and that would break the
        // tree traversal. Thus all paths in the tree are collected into a vec
        // so that such operation is safe.
        let item = self.transform_path(item).clone_subtree();
        let mut editor = SyntaxEditor::new(item.clone());
        preorder_rev(&item).filter_map(ast::Lifetime::cast).for_each(|lifetime| {
            if let Some(subst) = self.lifetime_substs.get(&lifetime.syntax().text().to_string()) {
                editor
                    .replace(lifetime.syntax(), subst.clone_subtree().clone_for_update().syntax());
            }
        });

        editor.finish().new_root().clone()
    }

    fn transform_default_values(&mut self, defaulted_params: Vec<DefaultedParam>) {
        // By now the default values are simply copied from where they are declared
        // and should be transformed. As any value is allowed to refer to previous
        // generic (both type and const) parameters, they should be all iterated left-to-right.
        for param in defaulted_params {
            let value = match &param {
                Either::Left(k) => self.type_substs.get(k).unwrap().syntax(),
                Either::Right(k) => self.const_substs.get(k).unwrap(),
            };
            // `transform_path` may update a node's parent and that would break the
            // tree traversal. Thus all paths in the tree are collected into a vec
            // so that such operation is safe.
            let new_value = self.transform_path(value);
            match param {
                Either::Left(k) => {
                    self.type_substs.insert(k, ast::Type::cast(new_value.clone()).unwrap());
                }
                Either::Right(k) => {
                    self.const_substs.insert(k, new_value.clone());
                }
            }
        }
    }

    fn transform_path(&self, path: &SyntaxNode) -> SyntaxNode {
        fn find_child_paths_and_ident_pats(
            root_path: &SyntaxNode,
        ) -> Vec<Either<ast::Path, ast::IdentPat>> {
            let mut result: Vec<Either<ast::Path, ast::IdentPat>> = Vec::new();
            for child in root_path.children() {
                if let Some(child_path) = ast::Path::cast(child.clone()) {
                    result.push(either::Left(child_path));
                } else if let Some(child_ident_pat) = ast::IdentPat::cast(child.clone()) {
                    result.push(either::Right(child_ident_pat));
                } else {
                    result.extend(find_child_paths_and_ident_pats(&child));
                }
            }
            result
        }

        let root_path = path.clone_subtree();

        let result = find_child_paths_and_ident_pats(&root_path);
        let mut editor = SyntaxEditor::new(root_path.clone());
        for sub_path in result {
            let new = self.transform_path(sub_path.syntax());
            editor.replace(sub_path.syntax(), new);
        }

        let update_sub_item = editor.finish().new_root().clone().clone_subtree();
        let item = find_child_paths_and_ident_pats(&update_sub_item);
        let mut editor = SyntaxEditor::new(update_sub_item);
        for sub_path in item {
            self.transform_path_or_ident_pat(&mut editor, &sub_path);
        }
        editor.finish().new_root().clone()
    }
    fn transform_path_or_ident_pat(
        &self,
        editor: &mut SyntaxEditor,
        item: &Either<ast::Path, ast::IdentPat>,
    ) -> Option<()> {
        match item {
            Either::Left(path) => self.transform_path_(editor, path),
            Either::Right(ident_pat) => self.transform_ident_pat(editor, ident_pat),
        }
    }

    fn transform_path_(&self, editor: &mut SyntaxEditor, path: &ast::Path) -> Option<()> {
        if path.qualifier().is_some() {
            return None;
        }
        if path.segment().is_some_and(|s| {
            s.parenthesized_arg_list().is_some()
                || (s.self_token().is_some() && path.parent_path().is_none())
        }) {
            // don't try to qualify `Fn(Foo) -> Bar` paths, they are in prelude anyway
            // don't try to qualify sole `self` either, they are usually locals, but are returned as modules due to namespace clashing
            return None;
        }
        let resolution = self.source_scope.speculative_resolve(path)?;

        match resolution {
            hir::PathResolution::TypeParam(tp) => {
                if let Some(subst) = self.type_substs.get(&tp) {
                    let parent = path.syntax().parent()?;
                    if let Some(parent) = ast::Path::cast(parent.clone()) {
                        // Path inside path means that there is an associated
                        // type/constant on the type parameter. It is necessary
                        // to fully qualify the type with `as Trait`. Even
                        // though it might be unnecessary if `subst` is generic
                        // type, always fully qualifying the path is safer
                        // because of potential clash of associated types from
                        // multiple traits

                        let trait_ref = find_trait_for_assoc_item(
                            self.source_scope,
                            tp,
                            parent.segment()?.name_ref()?,
                        )
                        .and_then(|trait_ref| {
                            let cfg = FindPathConfig {
                                prefer_no_std: false,
                                prefer_prelude: true,
                                prefer_absolute: false,
                                allow_unstable: true,
                            };
                            let found_path = self.target_module.find_path(
                                self.source_scope.db,
                                hir::ModuleDef::Trait(trait_ref),
                                cfg,
                            )?;
                            match make::ty_path(mod_path_to_ast(&found_path, self.target_edition)) {
                                ast::Type::PathType(path_ty) => Some(path_ty),
                                _ => None,
                            }
                        });

                        let segment = make::path_segment_ty(subst.clone(), trait_ref);
                        let qualified = make::path_from_segments(std::iter::once(segment), false);
                        editor.replace(path.syntax(), qualified.clone_for_update().syntax());
                    } else if let Some(path_ty) = ast::PathType::cast(parent) {
                        let old = path_ty.syntax();

                        if old.parent().is_some() {
                            editor.replace(old, subst.clone_subtree().clone_for_update().syntax());
                        } else {
                            // Some `path_ty` has no parent, especially ones made for default value
                            // of type parameters.
                            // In this case, `ted` cannot replace `path_ty` with `subst` directly.
                            // So, just replace its children as long as the `subst` is the same type.
                            let new = subst.clone_subtree().clone_for_update();
                            if !matches!(new, ast::Type::PathType(..)) {
                                return None;
                            }
                            let start = path_ty.syntax().first_child().map(NodeOrToken::Node)?;
                            let end = path_ty.syntax().last_child().map(NodeOrToken::Node)?;
                            editor.replace_all(
                                start..=end,
                                new.syntax().children().map(NodeOrToken::Node).collect::<Vec<_>>(),
                            );
                        }
                    } else {
                        editor.replace(
                            path.syntax(),
                            subst.clone_subtree().clone_for_update().syntax(),
                        );
                    }
                }
            }
            hir::PathResolution::Def(def) if def.as_assoc_item(self.source_scope.db).is_none() => {
                if let hir::ModuleDef::Trait(_) = def
                    && matches!(path.segment()?.kind()?, ast::PathSegmentKind::Type { .. })
                {
                    // `speculative_resolve` resolves segments like `<T as
                    // Trait>` into `Trait`, but just the trait name should
                    // not be used as the replacement of the original
                    // segment.
                    return None;
                }

                let cfg = FindPathConfig {
                    prefer_no_std: false,
                    prefer_prelude: true,
                    prefer_absolute: false,
                    allow_unstable: true,
                };
                let found_path = self.target_module.find_path(self.source_scope.db, def, cfg)?;
                let res = mod_path_to_ast(&found_path, self.target_edition).clone_for_update();
                let mut res_editor = SyntaxEditor::new(res.syntax().clone_subtree());
                if let Some(args) = path.segment().and_then(|it| it.generic_arg_list())
                    && let Some(segment) = res.segment()
                {
                    if let Some(old) = segment.generic_arg_list() {
                        res_editor
                            .replace(old.syntax(), args.clone_subtree().syntax().clone_for_update())
                    } else {
                        res_editor.insert(
                            syntax_editor::Position::last_child_of(segment.syntax()),
                            args.clone_subtree().syntax().clone_for_update(),
                        );
                    }
                }
                let res = res_editor.finish().new_root().clone();
                editor.replace(path.syntax().clone(), res);
            }
            hir::PathResolution::ConstParam(cp) => {
                if let Some(subst) = self.const_substs.get(&cp) {
                    editor.replace(path.syntax(), subst.clone_subtree().clone_for_update());
                }
            }
            hir::PathResolution::SelfType(imp) => {
                // keep Self type if it does not need to be replaced
                if self.same_self_type {
                    return None;
                }

                let ty = imp.self_ty(self.source_scope.db);
                let ty_str = &ty
                    .display_source_code(
                        self.source_scope.db,
                        self.source_scope.module().into(),
                        true,
                    )
                    .ok()?;
                let ast_ty = make::ty(ty_str).clone_for_update();

                if let Some(adt) = ty.as_adt()
                    && let ast::Type::PathType(path_ty) = &ast_ty
                {
                    let cfg = FindPathConfig {
                        prefer_no_std: false,
                        prefer_prelude: true,
                        prefer_absolute: false,
                        allow_unstable: true,
                    };
                    let found_path = self.target_module.find_path(
                        self.source_scope.db,
                        ModuleDef::from(adt),
                        cfg,
                    )?;

                    if let Some(qual) =
                        mod_path_to_ast(&found_path, self.target_edition).qualifier()
                    {
                        let res = make::path_concat(qual, path_ty.path()?).clone_for_update();
                        editor.replace(path.syntax(), res.syntax());
                        return Some(());
                    }
                }

                editor.replace(path.syntax(), ast_ty.syntax());
            }
            hir::PathResolution::Local(_)
            | hir::PathResolution::Def(_)
            | hir::PathResolution::BuiltinAttr(_)
            | hir::PathResolution::ToolModule(_)
            | hir::PathResolution::DeriveHelper(_) => (),
        }
        Some(())
    }

    fn transform_ident_pat(
        &self,
        editor: &mut SyntaxEditor,
        ident_pat: &ast::IdentPat,
    ) -> Option<()> {
        let name = ident_pat.name()?;

        let temp_path = make::path_from_text(&name.text());

        let resolution = self.source_scope.speculative_resolve(&temp_path)?;

        match resolution {
            hir::PathResolution::Def(def) if def.as_assoc_item(self.source_scope.db).is_none() => {
                // Macros cannot be used in pattern position, and identifiers that happen
                // to have the same name as macros (like parameter names `vec`, `format`, etc.)
                // are bindings, not references. Don't qualify them.
                if matches!(def, hir::ModuleDef::Macro(_)) {
                    return None;
                }

                // Similarly, modules cannot be used in pattern position.
                if matches!(def, hir::ModuleDef::Module(_)) {
                    return None;
                }

                if matches!(
                    def,
                    hir::ModuleDef::Function(_)
                        | hir::ModuleDef::Trait(_)
                        | hir::ModuleDef::TypeAlias(_)
                ) {
                    return None;
                }

                if let hir::ModuleDef::Adt(adt) = def {
                    match adt {
                        hir::Adt::Struct(s)
                            if s.kind(self.source_scope.db) != hir::StructKind::Unit =>
                        {
                            return None;
                        }
                        hir::Adt::Union(_) => return None,
                        hir::Adt::Enum(_) => return None,
                        _ => (),
                    }
                }

                if let hir::ModuleDef::Variant(v) = def
                    && v.kind(self.source_scope.db) != hir::StructKind::Unit
                {
                    return None;
                }

                let cfg = FindPathConfig {
                    prefer_no_std: false,
                    prefer_prelude: true,
                    prefer_absolute: false,
                    allow_unstable: true,
                };
                let found_path = self.target_module.find_path(self.source_scope.db, def, cfg)?;
                let res = mod_path_to_ast(&found_path, self.target_edition).clone_for_update();
                editor.replace(ident_pat.syntax(), res.syntax());
                Some(())
            }
            _ => None,
        }
    }
}

// FIXME: It would probably be nicer if we could get this via HIR (i.e. get the
// trait ref, and then go from the types in the substs back to the syntax).
fn get_syntactic_substs(impl_def: ast::Impl) -> Option<AstSubsts> {
    let target_trait = impl_def.trait_()?;
    let path_type = match target_trait {
        ast::Type::PathType(path) => path,
        _ => return None,
    };
    let generic_arg_list = path_type.path()?.segment()?.generic_arg_list()?;

    get_type_args_from_arg_list(generic_arg_list)
}

fn get_type_args_from_arg_list(generic_arg_list: ast::GenericArgList) -> Option<AstSubsts> {
    let mut result = AstSubsts::default();
    generic_arg_list.generic_args().for_each(|generic_arg| match generic_arg {
        // Const params are marked as consts on definition only,
        // being passed to the trait they are indistguishable from type params;
        // anyway, we don't really need to distinguish them here.
        ast::GenericArg::TypeArg(type_arg) => {
            result.types_and_consts.push(TypeOrConst::Either(type_arg))
        }
        // Some const values are recognized correctly.
        ast::GenericArg::ConstArg(const_arg) => {
            result.types_and_consts.push(TypeOrConst::Const(const_arg));
        }
        ast::GenericArg::LifetimeArg(l_arg) => result.lifetimes.push(l_arg),
        _ => (),
    });

    Some(result)
}

fn find_trait_for_assoc_item(
    scope: &SemanticsScope<'_>,
    type_param: hir::TypeParam,
    assoc_item: ast::NameRef,
) -> Option<hir::Trait> {
    let db = scope.db;
    let trait_bounds = type_param.trait_bounds(db);

    let assoc_item_name = assoc_item.text();

    for trait_ in trait_bounds {
        let names = trait_.items(db).into_iter().filter_map(|item| match item {
            hir::AssocItem::TypeAlias(ta) => Some(ta.name(db)),
            hir::AssocItem::Const(cst) => cst.name(db),
            _ => None,
        });

        for name in names {
            if assoc_item_name.as_str() == name.as_str() {
                // It is fine to return the first match because in case of
                // multiple possibilities, the exact trait must be disambiguated
                // in the definition of trait being implemented, so this search
                // should not be needed.
                return Some(trait_);
            }
        }
    }

    None
}

#[cfg(test)]
mod tests {
    use crate::RootDatabase;
    use crate::path_transform::PathTransform;
    use hir::Semantics;
    use syntax::{AstNode, ast::HasName};
    use test_fixture::WithFixture;
    use test_utils::assert_eq_text;

    #[test]
    fn test_transform_ident_pat() {
        let (db, file_id) = RootDatabase::with_single_file(
            r#"
mod foo {
    pub struct UnitStruct;
    pub struct RecordStruct {}
    pub enum Enum { UnitVariant, RecordVariant {} }
    pub fn function() {}
    pub const CONST: i32 = 0;
    pub static STATIC: i32 = 0;
    pub type Alias = i32;
    pub union Union { f: i32 }
}

mod bar {
    fn anchor() {}
}

fn main() {
    use foo::*;
    use foo::Enum::*;
    let UnitStruct = ();
    let RecordStruct = ();
    let Enum = ();
    let UnitVariant = ();
    let RecordVariant = ();
    let function = ();
    let CONST = ();
    let STATIC = ();
    let Alias = ();
    let Union = ();
}
"#,
        );
        let sema = Semantics::new(&db);
        let source_file = sema.parse(file_id);

        let function = source_file
            .syntax()
            .descendants()
            .filter_map(syntax::ast::Fn::cast)
            .find(|it| it.name().unwrap().text() == "main")
            .unwrap();
        let source_scope = sema.scope(function.body().unwrap().syntax()).unwrap();

        let anchor = source_file
            .syntax()
            .descendants()
            .filter_map(syntax::ast::Fn::cast)
            .find(|it| it.name().unwrap().text() == "anchor")
            .unwrap();
        let target_scope = sema.scope(anchor.body().unwrap().syntax()).unwrap();

        let transform = PathTransform::generic_transformation(&target_scope, &source_scope);
        let transformed = transform.apply(function.body().unwrap().syntax());

        let expected = r#"{
    use crate::foo::*;
    use crate::foo::Enum::*;
    let crate::foo::UnitStruct = ();
    let RecordStruct = ();
    let Enum = ();
    let crate::foo::Enum::UnitVariant = ();
    let RecordVariant = ();
    let function = ();
    let crate::foo::CONST = ();
    let crate::foo::STATIC = ();
    let Alias = ();
    let Union = ();
}"#;
        assert_eq_text!(expected, &transformed.to_string());
    }
}