@@ -746,6 +746,7 @@ impl Default for Options {
746
746
edition : DEFAULT_EDITION ,
747
747
json_artifact_notifications : false ,
748
748
json_unused_externs : false ,
749
+ json_future_incompat : false ,
749
750
pretty : None ,
750
751
working_dir : RealFileName :: LocalPath ( std:: env:: current_dir ( ) . unwrap ( ) ) ,
751
752
}
@@ -1257,6 +1258,7 @@ pub struct JsonConfig {
1257
1258
pub json_rendered : HumanReadableErrorType ,
1258
1259
pub json_artifact_notifications : bool ,
1259
1260
pub json_unused_externs : bool ,
1261
+ pub json_future_incompat : bool ,
1260
1262
}
1261
1263
1262
1264
/// Parse the `--json` flag.
@@ -1269,6 +1271,7 @@ pub fn parse_json(matches: &getopts::Matches) -> JsonConfig {
1269
1271
let mut json_color = ColorConfig :: Never ;
1270
1272
let mut json_artifact_notifications = false ;
1271
1273
let mut json_unused_externs = false ;
1274
+ let mut json_future_incompat = false ;
1272
1275
for option in matches. opt_strs ( "json" ) {
1273
1276
// For now conservatively forbid `--color` with `--json` since `--json`
1274
1277
// won't actually be emitting any colors and anything colorized is
@@ -1286,6 +1289,7 @@ pub fn parse_json(matches: &getopts::Matches) -> JsonConfig {
1286
1289
"diagnostic-rendered-ansi" => json_color = ColorConfig :: Always ,
1287
1290
"artifacts" => json_artifact_notifications = true ,
1288
1291
"unused-externs" => json_unused_externs = true ,
1292
+ "future-incompat" => json_future_incompat = true ,
1289
1293
s => early_error (
1290
1294
ErrorOutputType :: default ( ) ,
1291
1295
& format ! ( "unknown `--json` option `{}`" , s) ,
@@ -1298,6 +1302,7 @@ pub fn parse_json(matches: &getopts::Matches) -> JsonConfig {
1298
1302
json_rendered : json_rendered ( json_color) ,
1299
1303
json_artifact_notifications,
1300
1304
json_unused_externs,
1305
+ json_future_incompat,
1301
1306
}
1302
1307
}
1303
1308
@@ -2011,8 +2016,12 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
2011
2016
2012
2017
let edition = parse_crate_edition ( matches) ;
2013
2018
2014
- let JsonConfig { json_rendered, json_artifact_notifications, json_unused_externs } =
2015
- parse_json ( matches) ;
2019
+ let JsonConfig {
2020
+ json_rendered,
2021
+ json_artifact_notifications,
2022
+ json_unused_externs,
2023
+ json_future_incompat,
2024
+ } = parse_json ( matches) ;
2016
2025
2017
2026
let error_format = parse_error_format ( matches, color, json_rendered) ;
2018
2027
@@ -2248,6 +2257,7 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
2248
2257
edition,
2249
2258
json_artifact_notifications,
2250
2259
json_unused_externs,
2260
+ json_future_incompat,
2251
2261
pretty,
2252
2262
working_dir,
2253
2263
}
0 commit comments