fable 3.1.31 → 3.1.32

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fable",
3
- "version": "3.1.31",
3
+ "version": "3.1.32",
4
4
  "description": "A service dependency injection, configuration and logging library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -609,6 +609,11 @@ class ExpressionParserPostfix extends libExpressionParserOperationBase
609
609
  }
610
610
  }
611
611
  }
612
+ if (!tmpAbstractAssignToken.VirtualSymbolName)
613
+ {
614
+ tmpAbstractAssignToken.VirtualSymbolName = `V_SingleValue_${tmpVirtualSymbolIndex}`;
615
+ tmpVirtualSymbolIndex++;
616
+ }
612
617
  tmpResults.PostfixSolveList.push(this.getPosfixSolveListOperation(tmpAbstractAssignToken, tmpSolveLayerTokens[0], this.getTokenContainerObject('0.0')));
613
618
  continue;
614
619
  }