Fixing JSDoc syntax errors. (#3993)

This commit is contained in:
Monica Kozbial
2020-06-24 13:47:39 -07:00
committed by GitHub
parent 95986574cc
commit 9d4b9884fe
3 changed files with 6 additions and 3 deletions

View File

@@ -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;

View File

@@ -67,7 +67,7 @@ Blockly.ASTNode = function(type, location, opt_params) {
/**
* @typedef {{
* wsCoordinate: Blockly.utils.Coordinate,
* wsCoordinate: Blockly.utils.Coordinate
* }}
*/
Blockly.ASTNode.Params;

View File

@@ -42,7 +42,10 @@ Blockly.registry.DEFAULT = 'default';
* @template T
*/
Blockly.registry.Type = function(name) {
/** @private {string} */
/**
* @type {string}
* @private
*/
this.name_ = name;
};