Skip to content

Commit

Permalink
Delete warning in variable
Browse files Browse the repository at this point in the history
binary = boolean and remove the warning while studying the behaviour
  • Loading branch information
logix5 committed Nov 6, 2021
1 parent 9d9d8c5 commit ab8b804
Show file tree
Hide file tree
Showing 9 changed files with 345 additions and 8 deletions.
2 changes: 1 addition & 1 deletion www/js/typings.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Blockly.StaticTyping.prototype.collectVarsWithTypes = function(workspace) {
}
}
}
this.assignTypeToVars(blocks[i], variableName, variableType);
//this.assignTypeToVars(blocks[i], variableName, variableType);
}
}
return this.varTypeDict;
Expand Down
2 changes: 1 addition & 1 deletion www/lang/Blockly_cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(high state)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(low state)";
Blockly.Msg.ARD_TYPE_CHAR = "character";
Blockly.Msg.ARD_TYPE_TEXT = "text";
Blockly.Msg.ARD_TYPE_BOOL = "binary";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "integer";
Blockly.Msg.ARD_TYPE_UNUMBER = "unsigned integer";
Expand Down
2 changes: 1 addition & 1 deletion www/lang/Blockly_cz.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(vysoký stav)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(nízký stav)";
Blockly.Msg.ARD_TYPE_CHAR = "character";
Blockly.Msg.ARD_TYPE_TEXT = "text";
Blockly.Msg.ARD_TYPE_BOOL = "binary";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "integer";
Blockly.Msg.ARD_TYPE_UNUMBER = "unsigned integer";
Expand Down
2 changes: 1 addition & 1 deletion www/lang/Blockly_de.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(high state)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(low state)";
Blockly.Msg.ARD_TYPE_CHAR = "character";
Blockly.Msg.ARD_TYPE_TEXT = "text";
Blockly.Msg.ARD_TYPE_BOOL = "binary";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "integer";
Blockly.Msg.ARD_TYPE_UNUMBER = "unsigned integer";
Expand Down
2 changes: 1 addition & 1 deletion www/lang/Blockly_en.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(high state)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(low state)";
Blockly.Msg.ARD_TYPE_CHAR = "character";
Blockly.Msg.ARD_TYPE_TEXT = "text";
Blockly.Msg.ARD_TYPE_BOOL = "binary";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "integer";
Blockly.Msg.ARD_TYPE_UNUMBER = "unsigned integer";
Expand Down
2 changes: 1 addition & 1 deletion www/lang/Blockly_es.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(estado alto)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(estado bajo)";
Blockly.Msg.ARD_TYPE_CHAR = "carácter";
Blockly.Msg.ARD_TYPE_TEXT = "texto";
Blockly.Msg.ARD_TYPE_BOOL = "binario";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "entero";
Blockly.Msg.ARD_TYPE_UNUMBER = "unsigned integer";
Expand Down
337 changes: 337 additions & 0 deletions www/lang/Blockly_es.js.bak

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/lang/Blockly_ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(high state)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(low state)";
Blockly.Msg.ARD_TYPE_CHAR = "character";
Blockly.Msg.ARD_TYPE_TEXT = "text";
Blockly.Msg.ARD_TYPE_BOOL = "binary";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "integer";
Blockly.Msg.ARD_TYPE_UNUMBER = "unsigned integer";
Expand Down
2 changes: 1 addition & 1 deletion www/lang/Blockly_zh.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blockly.Msg.INOUT_HIGH_LEVEL = "1(high state)";
Blockly.Msg.INOUT_LOW_LEVEL = "0(low state)";
Blockly.Msg.ARD_TYPE_CHAR = "character";
Blockly.Msg.ARD_TYPE_TEXT = "text";
Blockly.Msg.ARD_TYPE_BOOL = "binary";
Blockly.Msg.ARD_TYPE_BOOL = "boolean";
Blockly.Msg.ARD_TYPE_SHORT = "byte";
Blockly.Msg.ARD_TYPE_NUMBER = "integer";
Blockly.Msg.ARD_TYPE_LONG = "long integer";
Expand Down

0 comments on commit ab8b804

Please sign in to comment.