mirror of
https://github.com/google/blockly.git
synced 2026-01-26 02:00:10 +01:00
Add namespace and alias annotations to jsdoc (#5550)
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
This commit is contained in:
@@ -10,6 +10,10 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Object representing a map of variables and their types.
|
||||
* @namespace Blockly.VariableMap
|
||||
*/
|
||||
goog.module('Blockly.VariableMap');
|
||||
|
||||
const Msg = goog.require('Blockly.Msg');
|
||||
@@ -36,6 +40,7 @@ goog.require('Blockly.Events.VarRename');
|
||||
* variables are the type indicated by the key.
|
||||
* @param {!Workspace} workspace The workspace this map belongs to.
|
||||
* @constructor
|
||||
* @alias Blockly.VariableMap
|
||||
*/
|
||||
const VariableMap = function(workspace) {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user