mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
Fixing JSDoc syntax errors. (#3993)
This commit is contained in:
@@ -114,7 +114,7 @@ Blockly.utils.object.inherits(Blockly.tree.BaseNode, Blockly.Component);
|
||||
* cssExpandedFolderIcon:string,
|
||||
* cssCollapsedFolderIcon:string,
|
||||
* cssFileIcon:string,
|
||||
* cssSelectedRow:string,
|
||||
* cssSelectedRow:string
|
||||
* }}
|
||||
*/
|
||||
Blockly.tree.BaseNode.Config;
|
||||
|
||||
@@ -67,7 +67,7 @@ Blockly.ASTNode = function(type, location, opt_params) {
|
||||
|
||||
/**
|
||||
* @typedef {{
|
||||
* wsCoordinate: Blockly.utils.Coordinate,
|
||||
* wsCoordinate: Blockly.utils.Coordinate
|
||||
* }}
|
||||
*/
|
||||
Blockly.ASTNode.Params;
|
||||
|
||||
@@ -42,7 +42,10 @@ Blockly.registry.DEFAULT = 'default';
|
||||
* @template T
|
||||
*/
|
||||
Blockly.registry.Type = function(name) {
|
||||
/** @private {string} */
|
||||
/**
|
||||
* @type {string}
|
||||
* @private
|
||||
*/
|
||||
this.name_ = name;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user