Split at higher level for multiline function calls

This commit is contained in:
Rachel Fenichel
2018-01-24 11:26:41 -08:00
parent b9b1105448
commit 3e62ffc20a
19 changed files with 93 additions and 91 deletions

View File

@@ -182,8 +182,8 @@ Blockly.Blocks['procedures_defnoreturn'] = {
// Check/uncheck the allow statement box.
if (this.getInput('RETURN')) {
containerBlock.setFieldValue(this.hasStatements_ ? 'TRUE' : 'FALSE',
'STATEMENTS');
containerBlock.setFieldValue(
this.hasStatements_ ? 'TRUE' : 'FALSE', 'STATEMENTS');
} else {
containerBlock.getInput('STATEMENT_INPUT').setVisible(false);
}