@@ -707,7 +707,7 @@ mod desc {
707707 pub ( crate ) const parse_list: & str = "a space-separated list of strings" ;
708708 pub ( crate ) const parse_list_with_polarity: & str =
709709 "a comma-separated list of strings, with elements beginning with + or -" ;
710- pub ( crate ) const parse_autodiff: & str = "a comma separated list of settings: `Enable`, `PrintSteps`, `PrintTA`, `PrintAA`, `PrintPerf`, `PrintModBefore`, `PrintModAfter`, `LooseTypes`, `Inline`" ;
710+ pub ( crate ) const parse_autodiff: & str = "a comma separated list of settings: `Enable`, `PrintSteps`, `PrintTA`, `PrintAA`, `PrintPerf`, `PrintModBefore`, `PrintModAfter`, `PrintModFinal`, ` LooseTypes`, `Inline`" ;
711711 pub ( crate ) const parse_comma_list: & str = "a comma-separated list of strings" ;
712712 pub ( crate ) const parse_opt_comma_list: & str = parse_comma_list;
713713 pub ( crate ) const parse_number: & str = "a number" ;
@@ -1355,6 +1355,7 @@ pub mod parse {
13551355 "PrintSteps" => AutoDiff :: PrintSteps ,
13561356 "PrintModBefore" => AutoDiff :: PrintModBefore ,
13571357 "PrintModAfter" => AutoDiff :: PrintModAfter ,
1358+ "PrintModFinal" => AutoDiff :: PrintModFinal ,
13581359 "LooseTypes" => AutoDiff :: LooseTypes ,
13591360 "Inline" => AutoDiff :: Inline ,
13601361 _ => {
@@ -2088,6 +2089,7 @@ options! {
20882089 `=PrintSteps`
20892090 `=PrintModBefore`
20902091 `=PrintModAfter`
2092+ `=PrintModFinal`
20912093 `=LooseTypes`
20922094 `=Inline`
20932095 Multiple options can be combined with commas." ) ,
0 commit comments