mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +01:00
feat: Improved procedure arg interaction. (#3527)
* feat: Improved procedure arg interaction. * Added docs. * Fixed typos and typings. * Fixed typings? * Changed visibility to private.
This commit is contained in:
committed by
alschmiedt
parent
267877115f
commit
6d1bb201f7
@@ -492,6 +492,14 @@ Blockly.Workspace.prototype.getAllVariables = function() {
|
||||
return this.variableMap_.getAllVariables();
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns all variable names of all types.
|
||||
* @return {!Array<string>} List of all variable names of all types.
|
||||
*/
|
||||
Blockly.Workspace.prototype.getAllVariableNames = function() {
|
||||
return this.variableMap_.getAllVariableNames();
|
||||
};
|
||||
|
||||
/* End functions that are just pass-throughs to the variable map. */
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user