From 72256a187d1a37773323e5526d782e5fa0b0c5e0 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Fri, 3 Mar 2017 13:22:50 -0800 Subject: [PATCH] Annotation fixes --- core/blockly.js | 2 +- core/blocks.js | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/core/blockly.js b/core/blockly.js index 7cd0e449d..54c8a5d24 100644 --- a/core/blockly.js +++ b/core/blockly.js @@ -27,7 +27,7 @@ /** * The top level namespace used to access the Blockly library. * @namespace Blockly - */ + **/ goog.provide('Blockly'); goog.require('Blockly.BlockSvg.render'); diff --git a/core/blocks.js b/core/blocks.js index 66ea2257a..5b78050aa 100644 --- a/core/blocks.js +++ b/core/blocks.js @@ -27,6 +27,11 @@ /** * A mapping of block type names to block prototype objects. * @name Blockly.Blocks - * @type {!Object} */ goog.provide('Blockly.Blocks'); + +/* + * A mapping of block type names to block prototype objects. + * @type {!Object} + */ +Blockly.Blocks = new Object(null);