mirror of
https://github.com/google/blockly.git
synced 2026-01-06 00:20:37 +01:00
chore: remove alias comments (#6816)
* chore: remove alias comments * chore: format * chore: remove extra newlines * chore: fix bad replaces
This commit is contained in:
@@ -19,7 +19,6 @@ import {ConnectionType} from './connection_type.js';
|
||||
/**
|
||||
* Number of characters to truncate a collapsed block to.
|
||||
*
|
||||
* @alias Blockly.internalConstants.COLLAPSE_CHARS
|
||||
* @internal
|
||||
*/
|
||||
export const COLLAPSE_CHARS = 30;
|
||||
@@ -28,7 +27,6 @@ export const COLLAPSE_CHARS = 30;
|
||||
* When dragging a block out of a stack, split the stack in two (true), or drag
|
||||
* out the block healing the stack (false).
|
||||
*
|
||||
* @alias Blockly.internalConstants.DRAG_STACK
|
||||
* @internal
|
||||
*/
|
||||
export const DRAG_STACK = true;
|
||||
@@ -36,7 +34,6 @@ export const DRAG_STACK = true;
|
||||
/**
|
||||
* Lookup table for determining the opposite type of a connection.
|
||||
*
|
||||
* @alias Blockly.internalConstants.OPPOSITE_TYPE
|
||||
* @internal
|
||||
*/
|
||||
export const OPPOSITE_TYPE: number[] = [];
|
||||
@@ -52,7 +49,6 @@ OPPOSITE_TYPE[ConnectionType.PREVIOUS_STATEMENT] =
|
||||
* This string indicates that this option in the dropdown is 'Rename
|
||||
* variable...' and if selected, should trigger the prompt to rename a variable.
|
||||
*
|
||||
* @alias Blockly.internalConstants.RENAME_VARIABLE_ID
|
||||
* @internal
|
||||
*/
|
||||
export const RENAME_VARIABLE_ID = 'RENAME_VARIABLE_ID';
|
||||
@@ -62,7 +58,6 @@ export const RENAME_VARIABLE_ID = 'RENAME_VARIABLE_ID';
|
||||
* This string indicates that this option in the dropdown is 'Delete the "%1"
|
||||
* variable' and if selected, should trigger the prompt to delete a variable.
|
||||
*
|
||||
* @alias Blockly.internalConstants.DELETE_VARIABLE_ID
|
||||
* @internal
|
||||
*/
|
||||
export const DELETE_VARIABLE_ID = 'DELETE_VARIABLE_ID';
|
||||
|
||||
Reference in New Issue
Block a user