-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
Bind comma expression LHS call expressions #41312
Conversation
@typescript-bot perf test this |
Heya @weswigham, I've started to run the parallelized community code test suite on this PR at 4ec02a5. You can monitor the build here. |
Heya @weswigham, I've started to run the perf test suite on this PR at 4ec02a5. You can monitor the build here. Update: The results are in! |
@weswigham Here they are:Comparison Report - master..41312
System
Hosts
Scenarios
|
The user suite test run you requested has finished and failed. I've opened a PR with the baseline diff from master. |
We originally made a conscious choice to, generally speaking, only bind calls when they're the child of an expression statement. This expands our binding to also include the LHS of comma expressions, since, just like lists of statements, they generally only exist to compose lists of possibly-side-effecting actions (like, say, assertions).
Fixes #41264