Skip to content

Commit 9f59c01

Browse files
authored
Update live_tests.js
1 parent 6dfd651 commit 9f59c01

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

blocks_vertical/live_tests.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,28 @@ goog.require('Blockly.Blocks');
66
goog.require('Blockly.Colours');
77
goog.require('Blockly.ScratchBlocks.VerticalExtensions');
88

9+
Blockly.Blocks['test_spread'] = {
10+
/**
11+
* @this Blockly.Block
12+
*/
13+
init: function () {
14+
this.jsonInit({
15+
"message0": '... %1',
16+
"args0": [
17+
{
18+
"type": "input_value",
19+
"name": "SPREAD",
20+
"shape": 3
21+
}
22+
],
23+
"colour": "#808080",
24+
"category": "...",
25+
"outputShape": 3,
26+
"extensions": ["output_string"]
27+
});
28+
},
29+
};
30+
931
Blockly.Blocks['operator_expandableBool'] = {
1032
/**
1133
* pm: Block for performing multiple truth operations (determined by user)

0 commit comments

Comments
 (0)