chore: remove alias comments (#6816)

* chore: remove alias comments

* chore: format

* chore: remove extra newlines

* chore: fix bad replaces
This commit is contained in:
Rachel Fenichel
2023-02-06 10:08:55 -08:00
committed by GitHub
parent a96eec8a70
commit 1d1a927628
260 changed files with 0 additions and 937 deletions

View File

@@ -28,8 +28,6 @@ import type {FlyoutButton} from './flyout_button.js';
* variable blocks.
* See also Blockly.Variables.CATEGORY_NAME and
* Blockly.Procedures.CATEGORY_NAME.
*
* @alias Blockly.VariablesDynamic.CATEGORY_NAME
*/
export const CATEGORY_NAME = 'VARIABLE_DYNAMIC';
@@ -75,7 +73,6 @@ export const onCreateVariableButtonClick_Colour = colourButtonClickHandler;
*
* @param workspace The workspace containing variables.
* @returns Array of XML elements.
* @alias Blockly.VariablesDynamic.flyoutCategory
*/
export function flyoutCategory(workspace: WorkspaceSvg): Element[] {
let xmlList = new Array<Element>();
@@ -109,7 +106,6 @@ export function flyoutCategory(workspace: WorkspaceSvg): Element[] {
*
* @param workspace The workspace containing variables.
* @returns Array of XML block elements.
* @alias Blockly.VariablesDynamic.flyoutCategoryBlocks
*/
export function flyoutCategoryBlocks(workspace: Workspace): Element[] {
const variableModelList = workspace.getAllVariables();