blockly-fluid 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -144,7 +144,7 @@ module.exports = (Blockly, { generator: languageGeneratorFallback, generators: l
144
144
 
145
145
  if (!languageGenerator.uniqueVariable) {
146
146
  languageGenerator.uniqueVariable = (variable) => {
147
- return languageGenerator.variableDB_.getDistinctName(
147
+ return languageGenerator.nameDB_.getDistinctName(
148
148
  variable,
149
149
  Blockly.VARIABLE_CATEGORY_NAME
150
150
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blockly-fluid",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "A flexible proxy wrapper for Blockly blocks.",
5
5
  "main": "index.js",
6
6
  "scripts": {