Closed
Description
The code is currently generated as something like this:
try-body
except-blocks
else-body
finally
if instead we do something like:
try-body
else-body
finally
except-blocks
finally (for except)
then there are fewer jumps in the happy path.
As a bonus, everything other than the except-blocks can be shared between try and try-star.
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done