Break out procedure call argument rendering into separate function.

This commit is contained in:
Neil Fraser
2015-04-30 14:57:14 -07:00
parent 3ff69d47fe
commit f454f77910
3 changed files with 31 additions and 18 deletions

View File

@@ -185,7 +185,8 @@ Blockly.Mutator.prototype.setVisible = function(visible) {
this.iconX_, this.iconY_, null, null);
var thisObj = this;
this.workspace_.flyout_.init(this.workspace_);
this.workspace_.flyout_.show(this.workspace_.options.languageTree.childNodes);
this.workspace_.flyout_.show(
this.workspace_.options.languageTree.childNodes);
this.rootBlock_ = this.block_.decompose(this.workspace_);
var blocks = this.rootBlock_.getDescendants();