From 5920e6aa39412ec814ce6db57fbe06851340733d Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Thu, 1 Mar 2018 17:56:49 -0800 Subject: [PATCH] Mark bindEvent_ and bindEventWithChecks_ package instead of private Fixes 50 compiler warnings. --- core/blockly.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/blockly.js b/core/blockly.js index 427d45199..7a2c44a8a 100644 --- a/core/blockly.js +++ b/core/blockly.js @@ -426,7 +426,7 @@ Blockly.defineBlocksWithJsonArray = function(jsonArray) { * opt_noPreventDefault is provided, opt_noCaptureIdentifier must also be * provided. * @return {!Array.} Opaque data that can be passed to unbindEvent_. - * @private + * @package */ Blockly.bindEventWithChecks_ = function(node, name, thisObject, func, opt_noCaptureIdentifier, opt_noPreventDefault) { @@ -484,7 +484,7 @@ Blockly.bindEventWithChecks_ = function(node, name, thisObject, func, * @param {Object} thisObject The value of 'this' in the function. * @param {!Function} func Function to call when event is triggered. * @return {!Array.} Opaque data that can be passed to unbindEvent_. - * @private + * @package */ Blockly.bindEvent_ = function(node, name, thisObject, func) { var wrapFunc = function(e) {