-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Allow a union property of a private/protected member and an intersection property including that same member #50328
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
Conversation
…ion property including that same member
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.
This looks odd because there's already some other declaration logic below this during symbol creation, so we're kinda looking over the input list of declarations multiple times. Perf-wise, it's probably fine except in some edge cases where symbols have a ton of declarations, which is pretty rare. Might wanna run the perf suite just in case, anyway.
@typescript-bot perf test this |
Heya @andrewbranch, I've started to run the diff-based top-repos suite on this PR at 7c904ee. You can monitor the build here. Update: The results are in! |
Heya @andrewbranch, I've started to run the diff-based user code test suite on this PR at 7c904ee. You can monitor the build here. Update: The results are in! |
Heya @andrewbranch, I've started to run the perf test suite on this PR at 7c904ee. You can monitor the build here. Update: The results are in! |
Heya @andrewbranch, I've started to run the parallelized Definitely Typed test suite on this PR at 7c904ee. You can monitor the build here. |
@andrewbranch Here are the results of running the user test suite comparing Everything looks good! |
@andrewbranch Here they are:
CompilerComparison Report - main..50328
System
Hosts
Scenarios
TSServerComparison Report - main..50328
System
Hosts
Scenarios
Developer Information: |
@andrewbranch Here are the results of running the top-repos suite comparing Everything looks good! |
Fixes #49517
The issue and the fix are explained in the test comment. I’m only 50% sure this is correct.