You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like there could be performance improvements in list parsing. These methods are used to parse a sequence of nodes, optionally with a comma, which performs error recovery. This is only the case in the new parser.
This PR (#10786) showed a regression which got resolved (at least locally) by removing list parsing in the fast path (single assignment target).
The text was updated successfully, but these errors were encountered:
I also noticed that parse_conditionl_expression_or_higher is not getting inlined anymore after #10809. It could be because there's a new branch in the function:
We could create a new parse_lambda_expression_or_higher which calls into parse_conditional_expression_or_higher and update all references of the latter to use the former:
It seems like there could be performance improvements in list parsing. These methods are used to parse a sequence of nodes, optionally with a comma, which performs error recovery. This is only the case in the new parser.
This PR (#10786) showed a regression which got resolved (at least locally) by removing list parsing in the fast path (single assignment target).
The text was updated successfully, but these errors were encountered: