Adding @namespace annotations for JSDoc. (#900)

This commit is contained in:
Andrew n marshall
2017-02-01 09:10:35 -08:00
committed by GitHub
parent 89ee9809d9
commit e95991cba8
11 changed files with 46 additions and 1 deletions

View File

@@ -19,9 +19,14 @@
*/
/**
* @fileoverview Empty name space for the Blocks singleton.
* @fileoverview A mapping of block type names to block prototype objects.
* @author spertus@google.com (Ellen Spertus)
*/
'use strict';
/**
* A mapping of block type names to block prototype objects.
* @name Blockly.Blocks
* @type {!Object<string,Object>}
*/
goog.provide('Blockly.Blocks');

View File

@@ -24,6 +24,10 @@
*/
'use strict';
/**
* @name Blockly.ContextMenu
* @namespace
*/
goog.provide('Blockly.ContextMenu');
goog.require('goog.dom');

View File

@@ -24,6 +24,10 @@
*/
'use strict';
/**
* @name Blockly.Css
* @namespace
*/
goog.provide('Blockly.Css');

View File

@@ -27,6 +27,10 @@
*/
'use strict';
/**
* @name Blockly.Extensions
* @namespace
**/
goog.provide('Blockly.Extensions');

View File

@@ -24,6 +24,10 @@
*/
'use strict';
/**
* @name Blockly.Procedures
* @namespace
**/
goog.provide('Blockly.Procedures');
goog.require('Blockly.Blocks');

View File

@@ -29,6 +29,10 @@
*/
'use strict';
/**
* @name Blockly.Tooltip
* @namespace
**/
goog.provide('Blockly.Tooltip');
goog.require('goog.dom');

View File

@@ -24,6 +24,10 @@
*/
'use strict';
/**
* @name Blockly.Touch
* @namespace
**/
goog.provide('Blockly.Touch');
goog.require('goog.events');

View File

@@ -26,6 +26,10 @@
*/
'use strict';
/**
* @name Blockly.utils
* @namespace
**/
goog.provide('Blockly.utils');
goog.require('Blockly.Touch');

View File

@@ -24,6 +24,10 @@
*/
'use strict';
/**
* @name Blockly.Variables
* @namespace
**/
goog.provide('Blockly.Variables');
goog.require('Blockly.Blocks');

View File

@@ -26,6 +26,10 @@
*/
'use strict';
/**
* @name Blockly.WidgetDiv
* @namespace
**/
goog.provide('Blockly.WidgetDiv');
goog.require('Blockly.Css');

View File

@@ -24,6 +24,10 @@
*/
'use strict';
/**
* @name Blockly.Xml
* @namespace
**/
goog.provide('Blockly.Xml');
goog.require('goog.asserts');