Migrate core/interfaces/i_ast_node_location_svg.js named requires

This commit is contained in:
kozbial
2021-07-16 11:42:37 -07:00
committed by Monica Kozbial
parent 1c72055e4f
commit cdea0789dd

View File

@@ -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() {};