scala / scala3

The Scala 3 compiler, also known as Dotty.
https://dotty.epfl.ch
Apache License 2.0
5.82k stars 1.05k forks source link

Fix #18238: Emit an explicit LineNumber for empty `else` branches. #20814

Closed sjrd closed 3 months ago

sjrd commented 3 months ago

If we don't, the code generated for the else branch remains associated with the last instruction of the then branch, which yields to confusing debugging sessions.

sjrd commented 3 months ago

Ah, this had already been done, with better handling of the corner cases, in #20431. Well at least the fact that I fixed it in essentially the same way means it's probably correct, so I merged #20431.