12345678910111213141516171819 |
- Blockly.Blocks['list_comprehension'] = {
- init: function() {
- this.appendValueInput("body")
- .setCheck(null)
- .appendField("[");
- this.appendValueInput("var")
- .setCheck(null)
- .appendField("for");
- this.appendValueInput("list")
- .setCheck(null)
- .appendField("in");
- this.appendDummyInput()
- .appendField("]");
- this.setInputsInline(true);
- this.setOutput(true, null);
- this.setTooltip('');
- this.setHelpUrl('http://www.example.com/');
- }
- };
|