@mojir/lits 2.1.23 → 2.1.24

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.
@@ -13821,8 +13821,7 @@ function createNamedNormalExpressionNode(symbolNode, params, sourceCodeInfo) {
13821
13821
  return node;
13822
13822
  }
13823
13823
  function createAccessorNode(left, right, sourceCodeInfo) {
13824
- // Unnamed normal expression
13825
- return withSourceCodeInfo([NodeTypes.NormalExpression, [left, [right]]], sourceCodeInfo);
13824
+ return withSourceCodeInfo([NodeTypes.NormalExpression, [[NodeTypes.NormalBuiltinSymbol, normalExpressionTypes.get], [left, right]]], sourceCodeInfo);
13826
13825
  }
13827
13826
  function fromBinaryOperatorToNode(operator, symbolNode, left, right, sourceCodeInfo) {
13828
13827
  var operatorName = operator[1];