@@ -338,12 +338,11 @@ fn run_compiler(
338
338
config. input = input;
339
339
true // has input: normal compilation
340
340
}
341
- Ok ( None ) => match matches. free. len( ) {
342
- 0 => false , // no input: we will exit early
343
- 1 => panic!( "make_input should have provided valid inputs" ) ,
344
- _ => default_early_dcx. early_fatal( format!(
345
- "multiple input filenames provided (first two filenames are `{}` and `{}`)" ,
346
- matches. free[ 0 ] , matches. free[ 1 ] ,
341
+ Ok ( None ) => match matches. free. as_slice( ) {
342
+ [ ] => false , // no input: we will exit early
343
+ [ _] => panic!( "make_input should have provided valid inputs" ) ,
344
+ [ fst, snd, ..] => default_early_dcx. early_fatal( format!(
345
+ "multiple input filenames provided (first two filenames are `{fst}` and `{snd}`)"
347
346
) ) ,
348
347
} ,
349
348
} ;
@@ -491,34 +490,30 @@ fn make_input(
491
490
early_dcx: & EarlyDiagCtxt ,
492
491
free_matches: & [ String ] ,
493
492
) -> Result <Option <Input >, ErrorGuaranteed > {
494
- if free_matches. len( ) == 1 {
495
- let ifile = & free_matches[ 0 ] ;
496
- if ifile == "-" {
497
- let mut src = String :: new( ) ;
498
- if io:: stdin( ) . read_to_string( & mut src) . is_err( ) {
499
- // Immediately stop compilation if there was an issue reading
500
- // the input (for example if the input stream is not UTF-8).
501
- let reported = early_dcx
502
- . early_err( "couldn't read from stdin, as it did not contain valid UTF-8" ) ;
503
- return Err ( reported) ;
504
- }
505
- if let Ok ( path) = env:: var( "UNSTABLE_RUSTDOC_TEST_PATH" ) {
506
- let line = env:: var( "UNSTABLE_RUSTDOC_TEST_LINE" ) . expect(
507
- "when UNSTABLE_RUSTDOC_TEST_PATH is set \
493
+ let [ ifile] = free_matches else { return Ok ( None ) } ;
494
+ if ifile == "-" {
495
+ let mut src = String :: new( ) ;
496
+ if io:: stdin( ) . read_to_string( & mut src) . is_err( ) {
497
+ // Immediately stop compilation if there was an issue reading
498
+ // the input (for example if the input stream is not UTF-8).
499
+ let reported =
500
+ early_dcx. early_err( "couldn't read from stdin, as it did not contain valid UTF-8" ) ;
501
+ return Err ( reported) ;
502
+ }
503
+ if let Ok ( path) = env:: var( "UNSTABLE_RUSTDOC_TEST_PATH" ) {
504
+ let line = env:: var( "UNSTABLE_RUSTDOC_TEST_LINE" ) . expect(
505
+ "when UNSTABLE_RUSTDOC_TEST_PATH is set \
508
506
UNSTABLE_RUSTDOC_TEST_LINE also needs to be set",
509
- ) ;
510
- let line = isize :: from_str_radix( & line, 10 )
511
- . expect( "UNSTABLE_RUSTDOC_TEST_LINE needs to be an number" ) ;
512
- let file_name = FileName :: doc_test_source_code( PathBuf :: from( path) , line) ;
513
- Ok ( Some ( Input :: Str { name: file_name, input: src } ) )
514
- } else {
515
- Ok ( Some ( Input :: Str { name: FileName :: anon_source_code( & src) , input: src } ) )
516
- }
507
+ ) ;
508
+ let line = isize :: from_str_radix( & line, 10 )
509
+ . expect( "UNSTABLE_RUSTDOC_TEST_LINE needs to be an number" ) ;
510
+ let file_name = FileName :: doc_test_source_code( PathBuf :: from( path) , line) ;
511
+ Ok ( Some ( Input :: Str { name: file_name, input: src } ) )
517
512
} else {
518
- Ok ( Some ( Input :: File ( PathBuf :: from ( ifile ) ) ) )
513
+ Ok ( Some ( Input :: Str { name : FileName :: anon_source_code ( & src ) , input : src } ) )
519
514
}
520
515
} else {
521
- Ok ( None )
516
+ Ok ( Some ( Input :: File ( PathBuf :: from ( ifile ) ) ) )
522
517
}
523
518
}
524
519
0 commit comments