mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
* 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
22 lines
494 B
JavaScript
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'];
|