summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/chains_with_comment.rs
blob: 522d70713bcd3d6c267f09d078bd0abb3f3fb81b (plain)
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
// Chains with comment.

fn main() {
    let x = y // comment
        .z;

    foo // foo
        // comment after parent
        .x
        .y
        // comment 1
        .bar() // comment after bar()
        // comment 2
        .foobar
        // comment after
        // comment 3
        .baz(x, y, z);

    self.rev_dep_graph
        .iter()
        // Remove nodes that are not dirty
        .filter(|&(unit, _)| dirties.contains(&unit))
        // Retain only dirty dependencies of the ones that are dirty
        .map(|(k, deps)| {
            (
                k.clone(),
                deps.iter()
                    .cloned()
                    .filter(|d| dirties.contains(&d))
                    .collect(),
            )
        });

    let y = expr /* comment */
        .kaas()?
        // comment
        .test();
    let loooooooooooooooooooooooooooooooooooooooooong = does_this?
        .look?
        .good?
        .should_we_break?
        .after_the_first_question_mark?;
    let zzzz = expr? // comment after parent
        // comment 0
        .another??? // comment 1
        .another???? // comment 2
        .another? // comment 3
        .another?;

    let y = a
        .very
        .loooooooooooooooooooooooooooooooooooooong() /* comment */
        .chain()
        .inside() /* comment */
        .weeeeeeeeeeeeeee()?
        .test()
        .0
        .x;

    parameterized(f, substs, def_id, Ns::Value, &[], |tcx| {
        tcx.lookup_item_type(def_id).generics
    })?;
    fooooooooooooooooooooooooooo()?
        .bar()?
        .baaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaz()?;

    // #2559
    App::new("cargo-cache")
        .version(crate_version!())
        .bin_name("cargo")
        .about("Manage cargo cache")
        .author("matthiaskrgr")
        .subcommand(
            SubCommand::with_name("cache")
                .version(crate_version!())
                .bin_name("cargo-cache")
                .about("Manage cargo cache")
                .author("matthiaskrgr")
                .arg(&list_dirs)
                .arg(&remove_dir)
                .arg(&gc_repos)
                .arg(&info)
                .arg(&keep_duplicate_crates)
                .arg(&dry_run)
                .arg(&auto_clean)
                .arg(&auto_clean_expensive),
        ) // subcommand
        .arg(&list_dirs);
}

// #2177
impl Foo {
    fn dirty_rev_dep_graph(
        &self,
        dirties: &HashSet<UnitKey>,
    ) -> HashMap<UnitKey, HashSet<UnitKey>> {
        let dirties = self.transitive_dirty_units(dirties);
        trace!("transitive_dirty_units: {:?}", dirties);

        self.rev_dep_graph
            .iter()
            // Remove nodes that are not dirty
            .filter(|&(unit, _)| dirties.contains(&unit))
            // Retain only dirty dependencies of the ones that are dirty
            .map(|(k, deps)| {
                (
                    k.clone(),
                    deps.iter()
                        .cloned()
                        .filter(|d| dirties.contains(&d))
                        .collect(),
                )
            })
    }
}

// #2907
fn foo() {
    let x = foo
        .bar??? // comment
        .baz;
    let x = foo
        .bar???
        // comment
        .baz;
    let x = foo
        .bar??? // comment
        // comment
        .baz;
    let x = foo
        .bar??????????????? // comment
        // comment
        // comment
        // comment
        // comment
        .baz;
}