blockly
Version:
Blockly is a library for building visual programming editors.
22 lines (16 loc) • 468 B
JavaScript
/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Generating PHP for dynamic variable blocks.
*/
;
goog.module('Blockly.PHP.variablesDynamic');
const PHP = goog.require('Blockly.PHP');
/** @suppress {extraRequire} */
goog.require('Blockly.PHP.variables');
// PHP is dynamically typed.
PHP['variables_get_dynamic'] = PHP['variables_get'];
PHP['variables_set_dynamic'] = PHP['variables_set'];