File "variables_dynamic.js"
Full path: /usr/home/mndrn/domains/mndrn.ru/public_html/block-hill/blockly/generators/lua/variables_dynamic.js
File size: 506 B
MIME-type: text/plain
Charset: utf-8
/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Generating Lua for dynamic variable blocks.
* @author [email protected] (Rachel Fenichel)
*/
'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'];