-
Notifications
You must be signed in to change notification settings - Fork 237
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
Some enhancements in support of interfaces in Pulse #3270
Conversation
…ging the signature of extension parsers to expose a parse_decl_name function
…pe as the expected type
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! I like the new interface.
src/tactics/FStar.Tactics.Hooks.fst
Outdated
// See if there is a val for the lid | ||
// | ||
if List.length lids > 1 | ||
then let s = lids |> List.map Ident.string_of_lid |> BU.concat_l ", " in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s
unused? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yes, thanks! At some point I was adding this in the error message but then I switched to the show method.
src/tactics/FStar.Tactics.Hooks.fst
Outdated
(e_tuple3 | ||
(e_list (e_tuple3 e_bool RE.e_sigelt e_blob)) | ||
(e_tuple3 e_bool RE.e_sigelt e_blob) | ||
(e_list (e_tuple3 e_bool RE.e_sigelt e_blob))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a big deal but maybe using Typeclasses.solve
can fill in these embeddings.
I have a local everest green, merging. |
The PR adds the following: