Fix some JsDoc annotations (#1650)

This commit is contained in:
Rachel Fenichel
2018-02-21 11:01:01 -08:00
committed by Andrew n marshall
parent c4d114eb0f
commit 13cb64392f
2 changed files with 2 additions and 2 deletions

View File

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

View File

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