-
Notifications
You must be signed in to change notification settings - Fork 811
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
Scoped nowarn #18049
base: main
Are you sure you want to change the base?
Scoped nowarn #18049
Conversation
❗ Release notes required
|
Hi @Martin521 - thanks for the contribution. It's a substantial effort and we appreciate it. The PR is on our radar - just keep in mind that it's big and specific, and it will take time to find capacity for it. If anyone from the community gets to thoroughly review it, that would be valuable as well. Thanks for your diligence and patience :) |
It seems that due to my initial focus on the compile (fsc) use case I didn't cover all editor use cases properly. It won't be so difficult to fix this, but it will take some time. Therefore, I will make this PR draft again. Sorry for prematurely asking for review. |
No need to apologize :). |
I added tests now also for multiple edit / typecheck cycles of the same file; fixed a flaw in the warn scope storage; fixed TransparentCompiler where in a certain situation it didn't play well with warn scopes; got FSAC/Ionide working with warn scopes and started explorative testing. So, I am submitting this once more for review. |
Thanks @Martin521 . If not, I will schedule myself for later to test this change applied to VS and check the behavior of the incremental-compilation. Unfortunately the editor tooling is not unified via LSP (yet), so there can be subtle differences in how editors react to changes affecting diagnostics :(. |
No, I don't have VS installed. |
Added When you commit this breaking change:
You can refer to the .NET SDK breaking change guidelines |
Since the RFC does have a breaking chance section, I decided to pick this PR as our first tester of the new SDK breaking chance policy. You do not have to do anything now, I will test how the labels help us track which doc changes are needed and if the process for documenting changes labelled as potentially breaking works smoothly. |
Let me know I should create a new issue, using the breaking change template, with a pointer to the old one, and link this PR to it. |
Description
Implements Scoped Nowarn according to draft RFC FS-1146.
This PR has taken a while. I had to deal with much more complexity than I imagined when I naively volunteered to tackle the feature request. Anyway, here we are.
I have split the PR into 7 commits that can be reviewed in sequence.
All of them compile, 1 and 4 - 7 also pass all tests locally.
Add the feature flag, baseline tests, and the core
WarnScopes
module. Seesrc/Compiler/SyntaxTree/WarnScopes.fsi
and the RFC for the functionality of the module.Add the necessary changes to lexing and parsing. Note that the warn directives can no longer be collected during parsing (since they can now appear not only in top-level modules, but anywhere). So we collect them during lexing, similar to the processing of #if/#else/#endif directives.
Remove legacy #nowarn processing (but hold off AST changes)
Integrate the WarnScopes functionality and test it
Add warn directive trivia (but hold off AST changes)
Enable warn directive trivia (which means AST changes)
Remove defunct types and parameters related to former #nowarn processing (more AST changes)
There is also a separate commit for the IlVerify baseline updates (change in line numbers only)
Checklist