@@ -176,9 +176,24 @@ impl DocTestBuilder {
176
176
177
177
// Now push any outer attributes from the example, assuming they
178
178
// are intended to be crate attributes.
179
- prog. push_str ( & self . crate_attrs ) ;
180
- prog. push_str ( & self . maybe_crate_attrs ) ;
181
- prog. push_str ( & self . crates ) ;
179
+ if !self . crate_attrs . is_empty ( ) {
180
+ prog. push_str ( & self . crate_attrs ) ;
181
+ if !self . crate_attrs . ends_with ( '\n' ) {
182
+ prog. push ( '\n' ) ;
183
+ }
184
+ }
185
+ if !self . maybe_crate_attrs . is_empty ( ) {
186
+ prog. push_str ( & self . maybe_crate_attrs ) ;
187
+ if !self . maybe_crate_attrs . ends_with ( '\n' ) {
188
+ prog. push ( '\n' ) ;
189
+ }
190
+ }
191
+ if !self . crates . is_empty ( ) {
192
+ prog. push_str ( & self . crates ) ;
193
+ if !self . crates . ends_with ( '\n' ) {
194
+ prog. push ( '\n' ) ;
195
+ }
196
+ }
182
197
183
198
// Don't inject `extern crate std` because it's already injected by the
184
199
// compiler.
@@ -276,7 +291,6 @@ const DOCTEST_CODE_WRAPPER: &str = "fn f(){";
276
291
fn parse_source ( source : & str , crate_name : & Option < & str > ) -> Result < ParseSourceInfo , ( ) > {
277
292
use rustc_errors:: DiagCtxt ;
278
293
use rustc_errors:: emitter:: { Emitter , HumanEmitter } ;
279
- // use rustc_parse::parser::ForceCollect;
280
294
use rustc_span:: source_map:: FilePathMapping ;
281
295
282
296
let mut info =
@@ -338,7 +352,8 @@ fn parse_source(source: &str, crate_name: &Option<&str>) -> Result<ParseSourceIn
338
352
info : & mut ParseSourceInfo ,
339
353
crate_name : & Option < & str > ,
340
354
is_top_level : bool ,
341
- ) {
355
+ ) -> bool {
356
+ let mut is_crate = false ;
342
357
if !info. has_global_allocator
343
358
&& item. attrs . iter ( ) . any ( |attr| attr. name_or_empty ( ) == sym:: global_allocator)
344
359
{
@@ -354,12 +369,13 @@ fn parse_source(source: &str, crate_name: &Option<&str>) -> Result<ParseSourceIn
354
369
if let Some ( ref body) = fn_item. body {
355
370
for stmt in & body. stmts {
356
371
if let StmtKind :: Item ( ref item) = stmt. kind {
357
- check_item ( item, info, crate_name, false )
372
+ is_crate |= check_item ( item, info, crate_name, false ) ;
358
373
}
359
374
}
360
375
}
361
376
}
362
377
ast:: ItemKind :: ExternCrate ( original) => {
378
+ is_crate = true ;
363
379
if !info. found_extern_crate
364
380
&& let Some ( crate_name) = crate_name
365
381
{
@@ -374,6 +390,7 @@ fn parse_source(source: &str, crate_name: &Option<&str>) -> Result<ParseSourceIn
374
390
}
375
391
_ => { }
376
392
}
393
+ is_crate
377
394
}
378
395
379
396
let mut prev_span_hi = None ;
@@ -412,8 +429,11 @@ fn parse_source(source: &str, crate_name: &Option<&str>) -> Result<ParseSourceIn
412
429
}
413
430
}
414
431
for stmt in & body. stmts {
432
+ let mut is_crate = false ;
415
433
match stmt. kind {
416
- StmtKind :: Item ( ref item) => check_item ( & item, & mut info, crate_name, true ) ,
434
+ StmtKind :: Item ( ref item) => {
435
+ is_crate = check_item ( & item, & mut info, crate_name, true ) ;
436
+ }
417
437
StmtKind :: Expr ( ref expr) if matches ! ( expr. kind, ast:: ExprKind :: Err ( _) ) => {
418
438
cancel_error_count ( & psess) ;
419
439
return Err ( ( ) ) ;
@@ -450,15 +470,15 @@ fn parse_source(source: &str, crate_name: &Option<&str>) -> Result<ParseSourceIn
450
470
if info. everything_else . is_empty ( )
451
471
&& ( !info. maybe_crate_attrs . is_empty ( ) || !info. crate_attrs . is_empty ( ) )
452
472
{
453
- // We add potential backlines/comments into attributes if there are some.
454
- push_to_s (
455
- & mut info. maybe_crate_attrs ,
456
- source,
457
- span. shrink_to_lo ( ) ,
458
- & mut prev_span_hi,
459
- ) ;
473
+ // We add potential backlines/comments if there are some in items generated
474
+ // before the wrapping function.
475
+ push_to_s ( & mut info. crates , source, span. shrink_to_lo ( ) , & mut prev_span_hi) ;
476
+ }
477
+ if !is_crate {
478
+ push_to_s ( & mut info. everything_else , source, span, & mut prev_span_hi) ;
479
+ } else {
480
+ push_to_s ( & mut info. crates , source, span, & mut prev_span_hi) ;
460
481
}
461
- push_to_s ( & mut info. everything_else , source, span, & mut prev_span_hi) ;
462
482
}
463
483
Ok ( info)
464
484
}
0 commit comments