Make undoStack_ and redoStack_ protected

This commit is contained in:
Rachel Fenichel
2018-03-15 13:02:12 -07:00
committed by GitHub
parent fe2a7499d2
commit d1d60eb62a

View File

@@ -62,12 +62,12 @@ Blockly.Workspace = function(opt_options) {
this.listeners_ = [];
/**
* @type {!Array.<!Blockly.Events.Abstract>}
* @private
* @protected
*/
this.undoStack_ = [];
/**
* @type {!Array.<!Blockly.Events.Abstract>}
* @private
* @protected
*/
this.redoStack_ = [];
/**