mirror of
https://github.com/google/blockly.git
synced 2026-01-14 20:37:10 +01:00
Adding @namespace annotations for JSDoc. (#900)
This commit is contained in:
committed by
GitHub
parent
89ee9809d9
commit
e95991cba8
@@ -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');
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.ContextMenu
|
||||
* @namespace
|
||||
*/
|
||||
goog.provide('Blockly.ContextMenu');
|
||||
|
||||
goog.require('goog.dom');
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Css
|
||||
* @namespace
|
||||
*/
|
||||
goog.provide('Blockly.Css');
|
||||
|
||||
|
||||
|
||||
@@ -27,6 +27,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Extensions
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.Extensions');
|
||||
|
||||
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Procedures
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.Procedures');
|
||||
|
||||
goog.require('Blockly.Blocks');
|
||||
|
||||
@@ -29,6 +29,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Tooltip
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.Tooltip');
|
||||
|
||||
goog.require('goog.dom');
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Touch
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.Touch');
|
||||
|
||||
goog.require('goog.events');
|
||||
|
||||
@@ -26,6 +26,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.utils
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.utils');
|
||||
|
||||
goog.require('Blockly.Touch');
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Variables
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.Variables');
|
||||
|
||||
goog.require('Blockly.Blocks');
|
||||
|
||||
@@ -26,6 +26,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.WidgetDiv
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.WidgetDiv');
|
||||
|
||||
goog.require('Blockly.Css');
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @name Blockly.Xml
|
||||
* @namespace
|
||||
**/
|
||||
goog.provide('Blockly.Xml');
|
||||
|
||||
goog.require('goog.asserts');
|
||||
|
||||
Reference in New Issue
Block a user