diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-17 10:34:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-17 10:34:54 -0700 |
commit | f75cf7fe9a70ec7041f758f061ac45deed18f4ab (patch) | |
tree | 6388084bdb173b613e57cc0661d58ac7de45d690 /scripts/test/shared.py | |
parent | 4a1a935ff0e30c9e46f4b7469488a5b6ffee2714 (diff) | |
download | binaryen-f75cf7fe9a70ec7041f758f061ac45deed18f4ab.tar.gz binaryen-f75cf7fe9a70ec7041f758f061ac45deed18f4ab.tar.bz2 binaryen-f75cf7fe9a70ec7041f758f061ac45deed18f4ab.zip |
Fix if else JS printing when if body is a labelled block (#2017)
Before, we'd print
if (..) label: { .. }; else ..
But that is wrong, as it ends the if too early. After this, we print
if (..) label: { .. } else ..
The bug was we checked if the if body was a block, but not if it was a labelled block.
Diffstat (limited to 'scripts/test/shared.py')
0 files changed, 0 insertions, 0 deletions