@@ -83,9 +83,9 @@ pub struct Options {
8383 /// Codegen options strings to hand to the compiler.
8484 pub codegen_options_strs : Vec < String > ,
8585 /// Debugging (`-Z`) options to pass to the compiler.
86- pub debugging_options : DebuggingOptions ,
86+ pub debugging_opts : DebuggingOptions ,
8787 /// Debugging (`-Z`) options strings to pass to the compiler.
88- pub debugging_options_strs : Vec < String > ,
88+ pub debugging_opts_strs : Vec < String > ,
8989 /// The target used to compile the crate against.
9090 pub target : TargetTriple ,
9191 /// Edition used when reading the crate. Defaults to "2015". Also used by default when
@@ -318,9 +318,9 @@ impl Options {
318318 let error_format = config:: parse_error_format ( & matches, color, json_rendered) ;
319319
320320 let codegen_options = build_codegen_options ( matches, error_format) ;
321- let debugging_options = build_debugging_options ( matches, error_format) ;
321+ let debugging_opts = build_debugging_options ( matches, error_format) ;
322322
323- let diag = new_handler ( error_format, None , & debugging_options ) ;
323+ let diag = new_handler ( error_format, None , & debugging_opts ) ;
324324
325325 // check for deprecated options
326326 check_deprecated_options ( & matches, & diag) ;
@@ -365,7 +365,7 @@ impl Options {
365365 . iter ( )
366366 . map ( |s| SearchPath :: from_cli_opt ( s, error_format) )
367367 . collect ( ) ;
368- let externs = parse_externs ( & matches, & debugging_options , error_format) ;
368+ let externs = parse_externs ( & matches, & debugging_opts , error_format) ;
369369 let extern_html_root_urls = match parse_extern_html_roots ( & matches) {
370370 Ok ( ex) => ex,
371371 Err ( err) => {
@@ -546,7 +546,7 @@ impl Options {
546546 let persist_doctests = matches. opt_str ( "persist-doctests" ) . map ( PathBuf :: from) ;
547547 let test_builder = matches. opt_str ( "test-builder" ) . map ( PathBuf :: from) ;
548548 let codegen_options_strs = matches. opt_strs ( "C" ) ;
549- let debugging_options_strs = matches. opt_strs ( "Z" ) ;
549+ let debugging_opts_strs = matches. opt_strs ( "Z" ) ;
550550 let lib_strs = matches. opt_strs ( "L" ) ;
551551 let extern_strs = matches. opt_strs ( "extern" ) ;
552552 let runtool = matches. opt_str ( "runtool" ) ;
@@ -569,8 +569,8 @@ impl Options {
569569 cfgs,
570570 codegen_options,
571571 codegen_options_strs,
572- debugging_options ,
573- debugging_options_strs ,
572+ debugging_opts ,
573+ debugging_opts_strs ,
574574 target,
575575 edition,
576576 maybe_sysroot,
0 commit comments