mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
Fix procedure param error.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user