From da309e264fa7c3ca11938a7d6ff79c1c81d3431d Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Thu, 13 Sep 2018 11:04:31 -0700 Subject: [PATCH] Add info to annotation --- core/connection.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/connection.js b/core/connection.js index 2832dfe73..dcebdd371 100644 --- a/core/connection.js +++ b/core/connection.js @@ -605,11 +605,14 @@ Blockly.Connection.prototype.setCheck = function(check) { /** * Get a connection's compatibility. - * @return {Array} List of compatible value types. + * @return {Array} List of compatible value types. Null if + * all types are compatible. + * @public */ Blockly.Connection.prototype.getCheck = function() { return this.check_; }; + /** * Change a connection's shadow block. * @param {Element} shadow DOM representation of a block or null.