blockly
Version:
Blockly is a library for building visual programming editors.
26 lines (21 loc) • 637 B
JavaScript
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Complete helper functions for generating Lua for
* blocks. This is the entrypoint for lua_compressed.js.
* @suppress {extraRequire}
*/
;
goog.module('Blockly.Lua.all');
goog.require('Blockly.Lua.colour');
goog.require('Blockly.Lua.lists');
goog.require('Blockly.Lua.logic');
goog.require('Blockly.Lua.loops');
goog.require('Blockly.Lua.math');
goog.require('Blockly.Lua.procedures');
goog.require('Blockly.Lua.texts');
goog.require('Blockly.Lua.variables');
goog.require('Blockly.Lua.variablesDynamic');