mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
refactor(generators): Migrate Lua generators to TypeScript (#7654)
* 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>
This commit is contained in:
committed by
GitHub
parent
149f95ecb4
commit
dc61e487b4
17
generators/lua/variables_dynamic.ts
Normal file
17
generators/lua/variables_dynamic.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* @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';
|
||||
Reference in New Issue
Block a user