@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
|
}
|
package/build/src/registry.js
CHANGED