From 785aa4ad307865c443bca4a96b45231ee8976b79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20M=C3=B6nig?= Date: Mon, 9 Jan 2017 15:07:36 +0100 Subject: [PATCH] updated version and reformatted a little bit of code to please static code analysis --- blocks.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/blocks.js b/blocks.js index cd2c43d4..c0c15f98 100644 --- a/blocks.js +++ b/blocks.js @@ -150,7 +150,7 @@ CustomCommandBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.blocks = '2017-January-08'; +modules.blocks = '2017-January-09'; var SyntaxElementMorph; var BlockMorph; @@ -664,7 +664,11 @@ SyntaxElementMorph.prototype.getVarNamesDict = function () { // Variable refactoring -SyntaxElementMorph.prototype.refactorVarInStack = function (oldName, newName, isScriptVar) { +SyntaxElementMorph.prototype.refactorVarInStack = function ( + oldName, + newName, + isScriptVar +) { // Rename all oldName var occurrences found in this block stack into newName // taking care of not being too greedy