@eagleoutice/flowr 2.1.4 → 2.1.5

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": "@eagleoutice/flowr",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
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": {
@@ -74,7 +74,7 @@ function makeCallContextQuery(functions, kind) {
74
74
  return functions.map(f => ({
75
75
  type: 'call-context',
76
76
  callName: f.name,
77
- includeAliases: true,
77
+ includeAliases: false,
78
78
  callNameExact: true,
79
79
  subkind: f.name,
80
80
  linkTo: f.linkTo ? { type: 'link-to-last-call', callName: f.linkTo } : undefined,
package/util/version.js CHANGED
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.flowrVersion = flowrVersion;
4
4
  const semver_1 = require("semver");
5
5
  // this is automatically replaced with the current version by release-it
6
- const version = '2.1.4';
6
+ const version = '2.1.5';
7
7
  function flowrVersion() {
8
8
  return new semver_1.SemVer(version);
9
9
  }