mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
22 lines
506 B
JavaScript
22 lines
506 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2018 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Generating PHP for dynamic variable blocks.
|
|
* @author fenichel@google.com (Rachel Fenichel)
|
|
*/
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.PHP.variablesDynamic');
|
|
|
|
goog.require('Blockly.PHP');
|
|
goog.require('Blockly.PHP.variables');
|
|
|
|
|
|
// PHP is dynamically typed.
|
|
Blockly.PHP['variables_get_dynamic'] = Blockly.PHP['variables_get'];
|
|
Blockly.PHP['variables_set_dynamic'] = Blockly.PHP['variables_set'];
|