Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion core/block_svg.js
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,8 @@ Blockly.BlockSvg.prototype.moveNumberedInputBefore = function(
* @param {string} name Language-neutral identifier which may used to find this
* input again. Should be unique to this block.
* @return {!Blockly.Input} The input object created.
* @private
* @protected
* @override
*/
Blockly.BlockSvg.prototype.appendInput_ = function(type, name) {
var input = Blockly.BlockSvg.superClass_.appendInput_.call(this, type, name);
Expand Down
5 changes: 3 additions & 2 deletions core/field_angle.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ Blockly.FieldAngle.RADIUS = Blockly.FieldAngle.HALF - 1;
/**
* Configure the field based on the given map of options.
* @param {!Object} config A map of options to configure the field based on.
* @private
* @protected
* @override
*/
Blockly.FieldAngle.prototype.configure_ = function(config) {
Blockly.FieldAngle.superClass_.configure_.call(this, config);
Expand Down Expand Up @@ -246,7 +247,7 @@ Blockly.FieldAngle.prototype.initView = function() {

/**
* Updates the graph when the field rerenders.
* @private
* @protected
* @override
*/
Blockly.FieldAngle.prototype.render_ = function() {
Expand Down
3 changes: 2 additions & 1 deletion core/field_checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ Blockly.FieldCheckbox.prototype.CURSOR = 'default';
/**
* Configure the field based on the given map of options.
* @param {!Object} config A map of options to configure the field based on.
* @private
* @protected
* @override
*/
Blockly.FieldCheckbox.prototype.configure_ = function(config) {
Blockly.FieldCheckbox.superClass_.configure_.call(this, config);
Expand Down
3 changes: 2 additions & 1 deletion core/field_colour.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ Blockly.FieldColour.prototype.columns_ = 0;
/**
* Configure the field based on the given map of options.
* @param {!Object} config A map of options to configure the field based on.
* @private
* @protected
* @override
*/
Blockly.FieldColour.prototype.configure_ = function(config) {
Blockly.FieldColour.superClass_.configure_.call(this, config);
Expand Down
3 changes: 2 additions & 1 deletion core/field_image.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ Blockly.FieldImage.prototype.isDirty_ = false;
/**
* Configure the field based on the given map of options.
* @param {!Object} config A map of options to configure the field based on.
* @private
* @protected
* @override
*/
Blockly.FieldImage.prototype.configure_ = function(config) {
Blockly.FieldImage.superClass_.configure_.call(this, config);
Expand Down
3 changes: 2 additions & 1 deletion core/field_multilineinput.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ Blockly.FieldMultilineInput.prototype.initView = function() {
* Get the text from this field as displayed on screen. May differ from getText
* due to ellipsis, and other formatting.
* @return {string} Currently displayed text.
* @private
* @protected
* @override
*/
Blockly.FieldMultilineInput.prototype.getDisplayText_ = function() {
var textLines = this.getText();
Expand Down
3 changes: 2 additions & 1 deletion core/field_number.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ Blockly.FieldNumber.prototype.SERIALIZABLE = true;
/**
* Configure the field based on the given map of options.
* @param {!Object} config A map of options to configure the field based on.
* @private
* @protected
* @override
*/
Blockly.FieldNumber.prototype.configure_ = function(config) {
Blockly.FieldNumber.superClass_.configure_.call(this, config);
Expand Down
2 changes: 1 addition & 1 deletion core/mutator.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Blockly.Mutator.prototype.drawIcon_ = function(group) {
* Clicking on the icon toggles if the mutator bubble is visible.
* Disable if block is uneditable.
* @param {!Event} e Mouse click event.
* @private
* @protected
* @override
*/
Blockly.Mutator.prototype.iconClick_ = function(e) {
Expand Down
6 changes: 4 additions & 2 deletions core/rendered_connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,8 @@ Blockly.RenderedConnection.prototype.onFailedConnect = function(
* Disconnect two blocks that are connected by this connection.
* @param {!Blockly.Block} parentBlock The superior block.
* @param {!Blockly.Block} childBlock The inferior block.
* @private
* @protected
* @override
*/
Blockly.RenderedConnection.prototype.disconnectInternal_ = function(parentBlock,
childBlock) {
Expand All @@ -484,7 +485,8 @@ Blockly.RenderedConnection.prototype.disconnectInternal_ = function(parentBlock,
/**
* Respawn the shadow block if there was one connected to the this connection.
* Render/rerender blocks as needed.
* @private
* @protected
* @override
*/
Blockly.RenderedConnection.prototype.respawnShadow_ = function() {
Blockly.RenderedConnection.superClass_.respawnShadow_.call(this);
Expand Down
3 changes: 2 additions & 1 deletion core/renderers/geras/drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ Blockly.geras.Drawer.prototype.drawBottom_ = function() {
/**
* Add steps for the left side of the block, which may include an output
* connection
* @private
* @protected
* @override
*/
Blockly.geras.Drawer.prototype.drawLeft_ = function() {
this.highlighter_.drawLeft();
Expand Down