From cdea0789dd79a06b0b06fd9e410d28cd838063af Mon Sep 17 00:00:00 2001 From: kozbial Date: Fri, 16 Jul 2021 11:42:37 -0700 Subject: [PATCH] Migrate core/interfaces/i_ast_node_location_svg.js named requires --- core/interfaces/i_ast_node_location_svg.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/interfaces/i_ast_node_location_svg.js b/core/interfaces/i_ast_node_location_svg.js index cf7c1e1cf..5b58d4abc 100644 --- a/core/interfaces/i_ast_node_location_svg.js +++ b/core/interfaces/i_ast_node_location_svg.js @@ -14,13 +14,13 @@ goog.module('Blockly.IASTNodeLocationSvg'); goog.module.declareLegacyNamespace(); -goog.require('Blockly.IASTNodeLocation'); +const IASTNodeLocation = goog.require('Blockly.IASTNodeLocation'); /** * An AST node location SVG interface. * @interface - * @extends {Blockly.IASTNodeLocation} + * @extends {IASTNodeLocation} */ const IASTNodeLocationSvg = function() {};