123456789101112131415161718192021 |
- Blockly.Blocks['class_creation'] = {
- init: function() {
- this.appendDummyInput()
- .appendField("Create class")
- .appendField(new Blockly.FieldVariable("new class"), "CLASS");
-
- this.appendDummyInput()
- .appendField("Inherits from")
- .appendField(new Blockly.FieldVariable("j"), "NAME")
- .appendField(",")
- .appendField(new Blockly.FieldVariable("k"), "NAME");
-
- this.appendStatementInput("BODY")
- .setCheck(null);
- this.setPreviousStatement(true, null);
- this.setNextStatement(true, null);
- this.setColour(230);
- this.setTooltip('');
- this.setHelpUrl('http://www.example.com/');
- }
- }
|