-
Notifications
You must be signed in to change notification settings - Fork 673
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
Quickfix for deprecated #19300
Merged
Merged
Quickfix for deprecated #19300
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def6094
to
6060cdc
Compare
6060cdc
to
1308474
Compare
1308474
to
724c19a
Compare
@coqbot run full ci |
724c19a
to
d499b64
Compare
@coqbot run full ci |
@SkySkimmer or @silene would you take this one? It is mostly infrastructure for library maintenance |
SkySkimmer
reviewed
Jul 3, 2024
1df32d2
to
af8fa8e
Compare
af8fa8e
to
50a86b0
Compare
@coqbot run full ci |
silene
reviewed
Jul 5, 2024
gares
added a commit
to gares/coq-elpi
that referenced
this pull request
Jul 5, 2024
aff3771
to
4054719
Compare
4054719
to
cfb758a
Compare
@coqbot run full ci |
cfb758a
to
2347950
Compare
done again, taking off. @coqbot run full ci |
I must have messed up something |
2347950
to
878546b
Compare
@coqbot run full ci |
Looks like the failure is unrelated |
SkySkimmer
approved these changes
Jul 8, 2024
@coqbot merge now |
@SkySkimmer: Please take care of the following overlays:
|
thanks |
gares
added a commit
to LPCIC/coq-elpi
that referenced
this pull request
Jul 8, 2024
ejgallego
added a commit
to ejgallego/coq-lsp
that referenced
this pull request
Jul 8, 2024
ppedrot
added a commit
to mattam82/Coq-Equations
that referenced
this pull request
Jul 8, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Deprecation
andUserWarn
declare typet
and'a with_qf
the latter being liket
but enriched with a quick fix generated by the datum of type'a
.Attributes
provides the parser for simple case and for thewith_qf
variant when'a
isLibnames.extended_global_reference
(a syndef of a globref).Now stuff like
Definition x := t
ofNotation x := t
can carry#[deprecated(use=this.qualified.name)]
and that qualid is resolved in the context of the declaration and used to print a quickfix using the Nametab, so that the proposed replacement does not incur in a capture.Overlay: