@abaplint/core 2.95.17 → 2.95.18

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.
@@ -118,7 +118,7 @@ class Attributes {
118
118
  if (ctyp instanceof Structures.Data) {
119
119
  const found = new data_2.Data().runSyntax(c, scope, this.filename);
120
120
  if (found !== undefined) {
121
- const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta());
121
+ const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta(), found.getValue());
122
122
  this.instance.push(attr);
123
123
  scope.addIdentifier(attr);
124
124
  }
@@ -126,7 +126,7 @@ class Attributes {
126
126
  else if (ctyp instanceof Structures.ClassData) {
127
127
  const found = new class_data_2.ClassData().runSyntax(c, scope, this.filename);
128
128
  if (found !== undefined) {
129
- const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta());
129
+ const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta(), found.getValue());
130
130
  this.static.push(attr);
131
131
  scope.addIdentifier(attr);
132
132
  }
@@ -63,7 +63,7 @@ class Registry {
63
63
  }
64
64
  static abaplintVersion() {
65
65
  // magic, see build script "version.sh"
66
- return "2.95.17";
66
+ return "2.95.18";
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.95.17",
3
+ "version": "2.95.18",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",