From fa91c6b36f2c1f2e58069ccd66e53c110deb84b8 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Tue, 16 Jan 2018 12:41:52 -0800 Subject: [PATCH] Make some functions package --- core/variable_map.js | 1 + core/workspace.js | 1 + 2 files changed, 2 insertions(+) diff --git a/core/variable_map.js b/core/variable_map.js index d97f5832a..2bc9d859f 100644 --- a/core/variable_map.js +++ b/core/variable_map.js @@ -344,6 +344,7 @@ Blockly.VariableMap.prototype.getVariablesOfType = function(type) { /** * Return all variable types. This list always contains the empty string. * @return {!Array.} List of variable types. + * @package */ Blockly.VariableMap.prototype.getVariableTypes = function() { var types = Object.keys(this.variableMap_); diff --git a/core/workspace.js b/core/workspace.js index a1428220d..af62e3d86 100644 --- a/core/workspace.js +++ b/core/workspace.js @@ -311,6 +311,7 @@ Blockly.Workspace.prototype.getVariablesOfType = function(type) { /** * Return all variable types. * @return {!Array.} List of variable types. + * @package */ Blockly.Workspace.prototype.getVariableTypes = function() { return this.variableMap_.getVariableTypes();