Files
blockly/generators/dart/variables_dynamic.js
Rachel Fenichel 4db047ff32 chore: fix missing requires in generators (#5744)
* chore: fix some missing requires in generators

* chore: fix missing requires in dart block generators

* chore: replace Blockly.isNumber with Blockly.utils.string.isNumber in generators

* chore: fix more missing requires in block generators
2021-11-30 08:51:21 -08:00

22 lines
494 B
JavaScript

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Generating Dart for dynamic variable blocks.
* @suppress {extraRequire}
*/
'use strict';
goog.provide('Blockly.Dart.variablesDynamic');
goog.require('Blockly.Dart');
goog.require('Blockly.Dart.variables');
// Dart is dynamically typed.
Blockly.Dart['variables_get_dynamic'] = Blockly.Dart['variables_get'];
Blockly.Dart['variables_set_dynamic'] = Blockly.Dart['variables_set'];