From 54ef08ea04049ff6a9907d9dd5d39a6604775b9c Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Mon, 19 Aug 2019 14:57:13 -0700 Subject: [PATCH] Fix some annotations --- .../block_rendering_rewrite/block_render_draw_debug.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/renderers/block_rendering_rewrite/block_render_draw_debug.js b/core/renderers/block_rendering_rewrite/block_render_draw_debug.js index b76ba1a32..1278ac3eb 100644 --- a/core/renderers/block_rendering_rewrite/block_render_draw_debug.js +++ b/core/renderers/block_rendering_rewrite/block_render_draw_debug.js @@ -108,7 +108,7 @@ Blockly.blockRendering.Debug.prototype.drawSpacerRow = function(row, cursorY, is /** * Draw a debug rectangle for a horizontal spacer. - * @param {!Blockly.BlockSvg.InRowSpacer} elem The spacer to render. + * @param {!Blockly.blockRendering.InRowSpacer} elem The spacer to render. * @param {number} rowHeight The height of the container row. * @param {boolean} isRtl Whether the block is rendered RTL. * @package @@ -137,7 +137,7 @@ Blockly.blockRendering.Debug.prototype.drawSpacerElem = function(elem, rowHeight /** * Draw a debug rectangle for an in-row element. - * @param {!Blockly.BlockSvg.Measurable} elem The element to render. + * @param {!Blockly.blockRendering.Measurable} elem The element to render. * @param {boolean} isRtl Whether the block is rendered RTL. * @package */ @@ -212,7 +212,7 @@ Blockly.blockRendering.Debug.prototype.drawConnection = function(conn) { /** * Draw a debug rectangle for a non-empty row. - * @param {!Blockly.BlockSvg.Row} row The non-empty row to render. + * @param {!Blockly.blockRendering.Row} row The non-empty row to render. * @param {number} cursorY The y position of the top of the row. * @param {boolean} isRtl Whether the block is rendered RTL. * @package @@ -252,7 +252,7 @@ Blockly.blockRendering.Debug.prototype.drawRenderedRow = function(row, cursorY, /** * Draw debug rectangles for a non-empty row and all of its subcomponents. - * @param {!Blockly.BlockSvg.Row} row The non-empty row to render. + * @param {!Blockly.blockRendering.Row} row The non-empty row to render. * @param {number} cursorY The y position of the top of the row. * @param {boolean} isRtl Whether the block is rendered RTL. * @package