google / blockly-android

Blockly for Android
Apache License 2.0
672 stars 209 forks source link

If block not generating code for else if and else statements #666

Closed ghost closed 6 years ago

AnmAtAnm commented 6 years ago

Confirmed:

screen shot 2017-10-02 at 5 37 49 pm
D/SimpleActivity: code:
  if (true) {
    window.alert('first');
  } else if (false) {
  } else {
  }