| 1234567891011121314151617181920212223 |
- /* eslint-disable */
- ;(function(root, factory) {
- if (typeof define === 'function' && define.amd) { // AMD
- define(['./core', './python_compressed.js'], factory);
- } else if (typeof exports === 'object') { // Node.js
- module.exports = factory(require('./core'), require('./python_compressed.js'));
- } else { // Browser
- root.BlocklyPython = factory(root.Blockly, root.BlocklyPython);
- }
- }(this, function(Blockly, BlocklyPython) {
- /**
- * @license
- * Copyright 2020 Google LLC
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @fileoverview Python generator module; just a wrapper for
- * python_compressed.js.
- */
- return BlocklyPython;
- }));
|