Closed edemaine closed 5 months ago
Empty then blocks in if expressions currently produce invalid JS. Example:
if
x = (if y else 5) ↓↓↓ x = ((y? : 5))
This PR adds a missing void 0.
void 0
Empty then blocks in
if
expressions currently produce invalid JS. Example:This PR adds a missing
void 0
.