@abaplint/core 2.119.18 → 2.119.19
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/build/src/registry.js +4 -4
- package/package.json +1 -1
package/build/src/registry.js
CHANGED
|
@@ -74,7 +74,7 @@ class Registry {
|
|
|
74
74
|
}
|
|
75
75
|
static abaplintVersion() {
|
|
76
76
|
// magic, see build script "version.sh"
|
|
77
|
-
return "2.119.
|
|
77
|
+
return "2.119.19";
|
|
78
78
|
}
|
|
79
79
|
getDDICReferences() {
|
|
80
80
|
return this.ddicReferences;
|
|
@@ -190,13 +190,13 @@ class Registry {
|
|
|
190
190
|
continue;
|
|
191
191
|
}
|
|
192
192
|
let found = this.findOrCreate(f.getObjectName(), f.getObjectType());
|
|
193
|
+
if (this.conf.getGlobal().errorOnDuplicateFilenames === true) {
|
|
194
|
+
this.checkDuplicateFilename(filename, found.getFiles());
|
|
195
|
+
}
|
|
193
196
|
if (dependency === false && found && this.isDependency(found)) {
|
|
194
197
|
this.removeDependency(found);
|
|
195
198
|
found = this.findOrCreate(f.getObjectName(), f.getObjectType());
|
|
196
199
|
}
|
|
197
|
-
if (this.conf.getGlobal().errorOnDuplicateFilenames === true) {
|
|
198
|
-
this.checkDuplicateFilename(filename, found.getFiles());
|
|
199
|
-
}
|
|
200
200
|
found.addFile(f);
|
|
201
201
|
}
|
|
202
202
|
return this;
|