resolve warnings

This commit is contained in:
Mario Pesch
2021-03-19 15:27:18 +01:00
parent a163c76463
commit 31e0880e7a
19 changed files with 34 additions and 28 deletions
+8 -7
View File
@@ -136,11 +136,12 @@ Blockly.Blocks['controls_if'] = {
saveConnections: function (containerBlock) {
var clauseBlock = containerBlock.nextConnection.targetBlock();
var i = 1;
var inputDo;
while (clauseBlock) {
switch (clauseBlock.type) {
case 'controls_if_elseif':
var inputIf = this.getInput('IF' + i);
var inputDo = this.getInput('DO' + i);
inputDo = this.getInput('DO' + i);
clauseBlock.valueConnection_ =
inputIf && inputIf.connection.targetConnection;
clauseBlock.statementConnection_ =
@@ -148,7 +149,7 @@ Blockly.Blocks['controls_if'] = {
i++;
break;
case 'controls_if_else':
var inputDo = this.getInput('ELSE');
inputDo = this.getInput('ELSE');
clauseBlock.statementConnection_ =
inputDo && inputDo.connection.targetConnection;
break;
@@ -169,11 +170,11 @@ Blockly.Blocks['controls_if'] = {
if (this.getInput('ELSE')) {
this.removeInput('ELSE');
}
var i = 1;
while (this.getInput('IF' + i)) {
this.removeInput('IF' + i);
this.removeInput('DO' + i);
i++;
var j = 1;
while (this.getInput('IF' + j)) {
this.removeInput('IF' + j);
this.removeInput('DO' + j);
j++;
}
// Rebuild block.
for (var i = 1; i <= this.elseifCount_; i++) {
@@ -112,7 +112,7 @@ Blockly.Blocks['sensebox_display_fastPrint'] = {
// Is the block nested in a loop?
var block = this;
do {
if (this.LOOP_TYPES.indexOf(block.type) != -1) {
if (this.LOOP_TYPES.indexOf(block.type) !== -1) {
legal = true;
break;
}