Bounding Box interface (#3906)

* Add an interface describing a bounding box registered on the workspace

* Clear the bounding box array

* PR comments

* Update chromedriver
This commit is contained in:
Sam El-Husseini
2020-05-19 18:06:11 -07:00
committed by GitHub
parent 38557d45be
commit fd916fdb9b
13 changed files with 122 additions and 18 deletions

View File

@@ -217,7 +217,7 @@ Blockly.Variables.generateUniqueName = function(workspace) {
* will try to generate single letter names in the range a -> z (skip l). It
* will start with the character passed to startChar.
* @param {string} startChar The character to start the search at.
* @param {!Array<string>} usedNames A list of all of the used names.
* @param {!Array.<string>} usedNames A list of all of the used names.
* @return {string} A unique name that is not present in the usedNames array.
*/
Blockly.Variables.generateUniqueNameFromOptions = function(startChar, usedNames) {