Break statements are existing mistakenly the newly added nested loop now instead of exiting the outer while let loops. Which led to different export results compared to the previous implementation.
To fix this, this PR added labels to the outer loops then changed all the break statements to refer to the matching outer loops labels.
This PR fixes a Bug introduced in #2114
Break statements are existing mistakenly the newly added nested loop now instead of exiting the outer
while let
loops. Which led to different export results compared to the previous implementation.To fix this, this PR added labels to the outer loops then changed all the break statements to refer to the matching outer loops labels.