@cloudbase/cals 0.3.8 → 0.3.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.
@@ -113,7 +113,7 @@ class DynamicValueParser {
113
113
  constructor(expressionString, options) {
114
114
  this.expressionString = expressionString;
115
115
  this.options = Object.assign(Object.assign({}, options), { type: PropBindType.expression, value: this.expressionString });
116
- let ast = acorn_1.parse(this.expressionString, exports.PARSE_CONFIG);
116
+ let ast = (0, acorn_1.parse)(this.expressionString, exports.PARSE_CONFIG);
117
117
  let { expression } = ast.body[0];
118
118
  this.expression = expression;
119
119
  }