updated version

and reformatted a little bit of code to please static code analysis
pull/29/head
Jens Mönig 2017-01-09 15:07:36 +01:00
rodzic 491f8cbe9d
commit 785aa4ad30
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -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