diff --git a/core/contextmenu_items.js b/core/contextmenu_items.js index a8e3a41e5..da417cac6 100644 --- a/core/contextmenu_items.js +++ b/core/contextmenu_items.js @@ -191,6 +191,7 @@ Blockly.ContextMenuItems.addDeletableBlocks_ = function(block, deleteList) { if (block.isDeletable()) { Array.prototype.push.apply(deleteList, block.getDescendants(false)); } else { + /* eslint-disable indent */ var children = /** @type {!Array} */ (block.getChildren(false)); for (var i = 0; i < children.length; i++) {