We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716d929 commit 521bb47Copy full SHA for 521bb47
src/blocks/mrc_class_method_def.ts
@@ -264,8 +264,8 @@ const CLASS_METHOD_DEF = {
264
this.appendValueInput(RETURN_VALUE)
265
.setAlign(Blockly.inputs.Align.RIGHT)
266
.appendField(Blockly.Msg.PROCEDURES_DEFRETURN_RETURN);
267
- // Move the return input to be before the statement input
268
- this.moveInputBefore(RETURN_VALUE, 'STACK');
+ // Move the return input to be after the statement input
+ this.moveInputBefore('STACK', RETURN_VALUE);
269
}
270
},
271
removeParameterFields: function (input: Blockly.Input) {
0 commit comments