You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/basic/FStarC.Options.fst
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -991,7 +991,7 @@ let rec specs_with_types warn_unsafe : list (char & string & opt_type & Pprint.d
991
991
992
992
( noshort,
993
993
"message_format",
994
-
EnumStr ["human"; "json"],
994
+
EnumStr ["human"; "json"; "github"],
995
995
text "Format of the messages emitted by F* (default `human`)");
996
996
997
997
( noshort,
@@ -1997,6 +1997,7 @@ let message_format () =
1997
1997
match get_message_format () with
1998
1998
| "human" -> Human
1999
1999
| "json" -> Json
2000
+
| "github" -> Github
2000
2001
| illegal -> failwith ("print_issue: option `message_format` was expected to be `human` or `json`, not `" ^ illegal ^ "`. This should be impossible: `message_format` was supposed to be validated.")
0 commit comments