mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
Our files are up to a decade old, and have churned so much, that the initial author of the file no longer has much meaning. Furthermore, this will encourage developers to post to the developer group, rather than emailing Googlers (usually me) directly.
21 lines
457 B
JavaScript
21 lines
457 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2018 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Generating Lua for dynamic variable blocks.
|
|
*/
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.Lua.variablesDynamic');
|
|
|
|
goog.require('Blockly.Lua');
|
|
goog.require('Blockly.Lua.variables');
|
|
|
|
|
|
// Lua is dynamically typed.
|
|
Blockly.Lua['variables_get_dynamic'] = Blockly.Lua['variables_get'];
|
|
Blockly.Lua['variables_set_dynamic'] = Blockly.Lua['variables_set'];
|