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.
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
[Tooling Optimization] Skip background type-checking on implementation files if signature files exist #10199
[Tooling Optimization] Skip background type-checking on implementation files if signature files exist #10199
Changes from all commits
13aa2e0
2368052
300664c
f158eaa
e83ebda
62c0519
00a35bc
db4f018
92c7cc8
4c3c258
46b1117
33481c2
315be1f
116b0b7
3fa36f6
79db9ed
8350e37
75f8099
7be6e07
57611bc
29d25f2
be77e72
6d29b09
ef9149d
ab54e62
8f16c45
8413844
1087972
c48217b
0b7ae6c
36dcf61
2db6f8d
a72a321
901712d
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Just out of curiosity, is hadsig the right name? It seems as if it should be hasSig.
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.
hadSig
refers to if the impl file "had" a sig before we type-checked.hasSig
might mean if the impl has any kind of signature, whether it be generated after a type-check or from a '.fsi' file.Honestly,
hasSig
might also be correct depending on how you look at it.The most accurate name would be
hasSigFromSigFile
.