mirror of
https://github.com/google/blockly.git
synced 2026-01-04 23:50:12 +01:00
Update JSDoc from Array.<> to Array<>
Same with Object.
This commit is contained in:
@@ -33,7 +33,7 @@ Blockly.Python['controls_if'] = function(block) {
|
||||
Blockly.Python.injectId(Blockly.Python.STATEMENT_SUFFIX, block),
|
||||
Blockly.Python.INDENT) + branchCode;
|
||||
}
|
||||
code += (n == 0 ? 'if ' : 'elif ' ) + conditionCode + ':\n' + branchCode;
|
||||
code += (n == 0 ? 'if ' : 'elif ') + conditionCode + ':\n' + branchCode;
|
||||
++n;
|
||||
} while (block.getInput('IF' + n));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user