mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
Fix some JsDoc annotations (#1650)
This commit is contained in:
committed by
Andrew n marshall
parent
c4d114eb0f
commit
13cb64392f
@@ -65,7 +65,7 @@ Blockly.Gesture = function(e, creatorWorkspace) {
|
||||
* How far the mouse has moved during this drag, in pixel units.
|
||||
* (0, 0) is at this.mouseDownXY_.
|
||||
* @type {goog.math.Coordinate}
|
||||
* private
|
||||
* @private
|
||||
*/
|
||||
this.currentDragDeltaXY_ = 0;
|
||||
|
||||
|
||||
@@ -77,10 +77,10 @@ Blockly.Workspace = function(opt_options) {
|
||||
this.blockDB_ = Object.create(null);
|
||||
|
||||
/**
|
||||
* @type {!Blockly.VariableMap}
|
||||
* A map from variable type to list of variable names. The lists contain all
|
||||
* of the named variables in the workspace, including variables
|
||||
* that are not currently in use.
|
||||
* @type {!Blockly.VariableMap}
|
||||
* @private
|
||||
*/
|
||||
this.variableMap_ = new Blockly.VariableMap(this);
|
||||
|
||||
Reference in New Issue
Block a user