@@ -42,10 +42,16 @@ impl ScrapeExamplesOptions {
42
42
scrape_tests,
43
43
} ) ,
44
44
( Some ( _) , false , _) | ( None , true , _) => {
45
- dcx. fatal ( "must use --scrape-examples-output-path and --scrape-examples-target-crate together" ) ;
45
+ dcx. fatal (
46
+ "must use --scrape-examples-output-path and --scrape-examples-target-crate \
47
+ together",
48
+ ) ;
46
49
}
47
50
( None , false , true ) => {
48
- dcx. fatal ( "must use --scrape-examples-output-path and --scrape-examples-target-crate with --scrape-tests" ) ;
51
+ dcx. fatal (
52
+ "must use --scrape-examples-output-path and \
53
+ --scrape-examples-target-crate with --scrape-tests",
54
+ ) ;
49
55
}
50
56
( None , false , false ) => None ,
51
57
}
@@ -163,34 +169,37 @@ where
163
169
} ;
164
170
165
171
// If this span comes from a macro expansion, then the source code may not actually show
166
- // a use of the given item, so it would be a poor example. Hence, we skip all uses in macros.
172
+ // a use of the given item, so it would be a poor example. Hence, we skip all uses in
173
+ // macros.
167
174
if call_span. from_expansion ( ) {
168
175
trace ! ( "Rejecting expr from macro: {call_span:?}" ) ;
169
176
return ;
170
177
}
171
178
172
- // If the enclosing item has a span coming from a proc macro, then we also don't want to include
173
- // the example.
179
+ // If the enclosing item has a span coming from a proc macro, then we also don't want to
180
+ // include the example.
174
181
let enclosing_item_span =
175
182
tcx. hir ( ) . span_with_body ( tcx. hir ( ) . get_parent_item ( ex. hir_id ) . into ( ) ) ;
176
183
if enclosing_item_span. from_expansion ( ) {
177
184
trace ! ( "Rejecting expr ({call_span:?}) from macro item: {enclosing_item_span:?}" ) ;
178
185
return ;
179
186
}
180
187
181
- // If the enclosing item doesn't actually enclose the call, this means we probably have a weird
182
- // macro issue even though the spans aren't tagged as being from an expansion.
188
+ // If the enclosing item doesn't actually enclose the call, this means we probably have a
189
+ // weird macro issue even though the spans aren't tagged as being from an expansion.
183
190
if !enclosing_item_span. contains ( call_span) {
184
191
warn ! (
185
- "Attempted to scrape call at [{call_span:?}] whose enclosing item [{enclosing_item_span:?}] doesn't contain the span of the call."
192
+ "Attempted to scrape call at [{call_span:?}] whose enclosing item \
193
+ [{enclosing_item_span:?}] doesn't contain the span of the call."
186
194
) ;
187
195
return ;
188
196
}
189
197
190
198
// Similarly for the call w/ the function ident.
191
199
if !call_span. contains ( ident_span) {
192
200
warn ! (
193
- "Attempted to scrape call at [{call_span:?}] whose identifier [{ident_span:?}] was not contained in the span of the call."
201
+ "Attempted to scrape call at [{call_span:?}] whose identifier [{ident_span:?}] was \
202
+ not contained in the span of the call."
194
203
) ;
195
204
return ;
196
205
}
@@ -224,7 +233,8 @@ where
224
233
Some ( url) => url,
225
234
None => {
226
235
trace ! (
227
- "Rejecting expr ({call_span:?}) whose clean span ({clean_span:?}) cannot be turned into a link"
236
+ "Rejecting expr ({call_span:?}) whose clean span ({clean_span:?}) \
237
+ cannot be turned into a link"
228
238
) ;
229
239
return ;
230
240
}
@@ -272,7 +282,8 @@ pub(crate) fn run(
272
282
let ( cx, _) = Context :: init ( krate, renderopts, cache, tcx) . map_err ( |e| e. to_string ( ) ) ?;
273
283
274
284
// Collect CrateIds corresponding to provided target crates
275
- // If two different versions of the crate in the dependency tree, then examples will be collected from both.
285
+ // If two different versions of the crate in the dependency tree, then examples will be
286
+ // collected from both.
276
287
let all_crates = tcx
277
288
. crates ( ( ) )
278
289
. iter ( )
0 commit comments