@abaplint/core 2.94.15 → 2.94.16

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.
@@ -2,12 +2,13 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.FieldLength = void 0;
4
4
  const Expressions = require("../../2_statements/expressions");
5
+ const _reference_1 = require("../_reference");
5
6
  const field_chain_1 = require("./field_chain");
6
7
  class FieldLength {
7
8
  runSyntax(node, scope, filename) {
8
9
  const field = node.findDirectExpression(Expressions.SimpleFieldChain2);
9
10
  if (field) {
10
- new field_chain_1.FieldChain().runSyntax(field, scope, filename);
11
+ new field_chain_1.FieldChain().runSyntax(field, scope, filename, _reference_1.ReferenceType.DataReadReference);
11
12
  }
12
13
  }
13
14
  }
@@ -2,12 +2,13 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.FieldOffset = void 0;
4
4
  const Expressions = require("../../2_statements/expressions");
5
+ const _reference_1 = require("../_reference");
5
6
  const field_chain_1 = require("./field_chain");
6
7
  class FieldOffset {
7
8
  runSyntax(node, scope, filename) {
8
9
  const field = node.findDirectExpression(Expressions.SimpleFieldChain2);
9
10
  if (field) {
10
- new field_chain_1.FieldChain().runSyntax(field, scope, filename);
11
+ new field_chain_1.FieldChain().runSyntax(field, scope, filename, _reference_1.ReferenceType.DataReadReference);
11
12
  }
12
13
  }
13
14
  }
@@ -63,7 +63,7 @@ class Registry {
63
63
  }
64
64
  static abaplintVersion() {
65
65
  // magic, see build script "version.sh"
66
- return "2.94.15";
66
+ return "2.94.16";
67
67
  }
68
68
  getDDICReferences() {
69
69
  return this.references;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.94.15",
3
+ "version": "2.94.16",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",