python.js 658 B

1234567891011121314151617181920212223
  1. /* eslint-disable */
  2. ;(function(root, factory) {
  3. if (typeof define === 'function' && define.amd) { // AMD
  4. define(['./core', './python_compressed.js'], factory);
  5. } else if (typeof exports === 'object') { // Node.js
  6. module.exports = factory(require('./core'), require('./python_compressed.js'));
  7. } else { // Browser
  8. root.BlocklyPython = factory(root.Blockly, root.BlocklyPython);
  9. }
  10. }(this, function(Blockly, BlocklyPython) {
  11. /**
  12. * @license
  13. * Copyright 2020 Google LLC
  14. * SPDX-License-Identifier: Apache-2.0
  15. */
  16. /**
  17. * @fileoverview Python generator module; just a wrapper for
  18. * python_compressed.js.
  19. */
  20. return BlocklyPython;
  21. }));
粤ICP备19079148号