Files
blockly/generators/python/variables_dynamic.ts
Christopher Allen b198e2f4ae fix(generators): Improve consistency of migrated language generators (#7662)
* 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.
2023-11-28 16:57:31 +00:00

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';