mirror of
https://github.com/google/blockly.git
synced 2026-01-05 08:00:09 +01:00
* refactor(generators): Migrate lua_generator.js to TypeScript * refactor(generators): Migrate generators/lua/* to TypeScript * fix(generators): Fix type errors in generator functions * refactor(generators): Migrate generators/lua.js to TypeScript * chore(generator): Format * chore(generators): JSDoc and formatting tweaks for PR #7654 --------- Co-authored-by: Christopher Allen <cpcallen+git@google.com>
18 lines
354 B
TypeScript
18 lines
354 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2018 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file Generating Lua for dynamic variable blocks.
|
|
*/
|
|
|
|
// Former goog.module ID: Blockly.Lua.variablesDynamic
|
|
|
|
// Lua is dynamically typed.
|
|
export {
|
|
variables_get as variables_get_dynamic,
|
|
variables_set as variables_set_dynamic,
|
|
} from './variables.js';
|