Fix procedure param error.

This commit is contained in:
Neil Fraser
2015-04-06 14:27:55 -07:00
parent f899b5bed7
commit 6dc6837981
2 changed files with 5 additions and 5 deletions

View File

@@ -439,7 +439,7 @@ Blockly.Blocks['procedures_callnoreturn'] = {
this.setNextStatement(true);
// Tooltip is set in domToMutation.
this.arguments_ = [];
this.quarkConnections_ = null;
this.quarkConnections_ = {};
this.quarkArguments_ = null;
},
/**
@@ -656,7 +656,7 @@ Blockly.Blocks['procedures_callreturn'] = {
this.setOutput(true);
// Tooltip is set in domToMutation.
this.arguments_ = [];
this.quarkConnections_ = null;
this.quarkConnections_ = {};
this.quarkArguments_ = null;
},
getProcedureCall: Blockly.Blocks['procedures_callnoreturn'].getProcedureCall,