node.js 656 B

123456789101112131415161718192021
  1. /* eslint-disable */
  2. (function (Blockly, En, BlocklyBlocks, BlocklyJS, BlocklyPython, BlocklyPHP, BlocklyLua, BlocklyDart){
  3. /**
  4. * @license
  5. * Copyright 2019 Google LLC
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. /**
  9. * @fileoverview Blockly module for Node. It includes Blockly core,
  10. * built-in blocks, all the generators and the English locale.
  11. */
  12. /* eslint-disable */
  13. 'use strict';
  14. // Include the EN Locale by default.
  15. Blockly.setLocale(En);
  16. module.exports = Blockly;
  17. })(require('./core'), require('./msg/en'), require('./blocks'), require('./javascript'), require('./python'), require('./php'), require('./lua'), require('./dart'));
粤ICP备19079148号