@eagleoutice/flowr 2.0.10 → 2.0.11

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.
@@ -9,7 +9,7 @@ const normalize_meta_1 = require("../../../r-bridge/lang-4.x/ast/parser/xml/norm
9
9
  const default_pipelines_1 = require("../../../core/steps/pipeline/default-pipelines");
10
10
  const retriever_1 = require("../../../r-bridge/retriever");
11
11
  function toDepthMap(xml) {
12
- const root = (0, input_format_1.getKeysGuarded)(xml, "exprlist" /* RawRType.ExpressionList */);
12
+ const root = (0, input_format_1.getKeyGuarded)(xml, "exprlist" /* RawRType.ExpressionList */);
13
13
  const visit = [{ depth: 0, node: root }];
14
14
  const result = [];
15
15
  while (visit.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagleoutice/flowr",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "Static Dataflow Analyzer and Program Slicer for the R Programming Language",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "repository": {
package/util/version.js CHANGED
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.flowrVersion = void 0;
4
4
  const semver_1 = require("semver");
5
5
  // this is automatically replaced with the current version by release-it
6
- const version = '2.0.10';
6
+ const version = '2.0.11';
7
7
  function flowrVersion() {
8
8
  return new semver_1.SemVer(version);
9
9
  }