mirror of
https://github.com/google/blockly.git
synced 2025-12-27 19:50:06 +01:00
* docs(generators): @fileoverview -> @file; delete @suppress * fix(generators): Fix return type of getAdjusted And improve its documentation too. Fix the @returns doc for PythonGenerator's getAdjustedInt but (for now) don't change the type because it does actually return numbers in some circumstances.
18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2018 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file Generating Python for dynamic variable blocks.
|
|
*/
|
|
|
|
// Former goog.module ID: Blockly.Python.variablesDynamic
|
|
|
|
// generator is dynamically typed.
|
|
export {
|
|
variables_get as variables_get_dynamic,
|
|
variables_set as variables_set_dynamic,
|
|
} from './variables.js';
|