Migrate core/renderers/zelos/measurables/inputs.js to ES6 const/let

This commit is contained in:
kozbial
2021-08-17 11:44:46 -07:00
committed by Monica Kozbial
parent 7037a15011
commit 57644d1e29

View File

@@ -36,7 +36,7 @@ Blockly.zelos.StatementInput = function(constants, input) {
if (this.connectedBlock) {
// Find the bottom-most connected block in the stack.
var block = this.connectedBlock;
let block = this.connectedBlock;
while (block.getNextBlock()) {
block = block.getNextBlock();
}