Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extraction: print mllb_attrs #3482

Merged
merged 2 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 17 additions & 10 deletions ocaml/fstar-lib/generated/FStar_Extraction_ML_Syntax.ml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/extraction/FStar.Extraction.ML.Syntax.fst
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ and mlletbinding_to_doc (lbs) =
and mllb_to_doc (lb) =
record [
fld "mllb_name" (doc_of_string lb.mllb_name);
fld "mllb_attrs" (list_to_doc lb.mllb_attrs mlexpr_to_doc);
fld "mllb_tysc" (option_to_doc lb.mllb_tysc (fun (_, t) -> mlty_to_doc t));
fld "mllb_add_unit" (doc_of_string (string_of_bool lb.mllb_add_unit));
fld "mllb_def" (mlexpr_to_doc lb.mllb_def);
Expand Down
Loading