refactor: msg.js: use named export, remove declareLegacyNamespace (#5768)

This commit is contained in:
Christopher Allen
2021-12-02 16:47:27 +00:00
committed by GitHub
parent 35279eb8b7
commit da16a66f33
22 changed files with 50 additions and 34 deletions

View File

@@ -14,10 +14,10 @@
*/
goog.module('Blockly.utils.parsing');
const Msg = goog.require('Blockly.Msg');
const colourUtils = goog.require('Blockly.utils.colour');
const internalConstants = goog.require('Blockly.internalConstants');
const stringUtils = goog.require('Blockly.utils.string');
const {Msg} = goog.require('Blockly.Msg');
/**