@abaplint/core 2.120.20 → 2.120.21
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/abaplint.d.ts
CHANGED
|
@@ -1264,6 +1264,7 @@ declare class ClassDefinition_3 extends Identifier implements IClassDefinition {
|
|
|
1264
1264
|
private checkInterfaceVisibility;
|
|
1265
1265
|
private checkMethodsFromSuperClasses;
|
|
1266
1266
|
private checkMethodNameConflicts;
|
|
1267
|
+
private checkEventNameConflicts;
|
|
1267
1268
|
private findFriends;
|
|
1268
1269
|
private addReference;
|
|
1269
1270
|
private parse;
|
|
@@ -23,11 +23,12 @@ class ModifyEntities {
|
|
|
23
23
|
const reported = (0, combi_1.seq)("REPORTED", expressions_1.Target);
|
|
24
24
|
const end = (0, combi_1.optPrio)((0, combi_1.per)(failed, result, mapped, reported));
|
|
25
25
|
const entities = (0, combi_1.seq)((0, combi_1.optPrio)("AUGMENTING"), "ENTITIES OF", expressions_1.NamespaceSimpleName, (0, combi_1.opt)("IN LOCAL MODE"), (0, combi_1.plusPrio)((0, combi_1.seq)("ENTITY", expressions_1.NamespaceSimpleName, (0, combi_1.plus)(operation))));
|
|
26
|
+
const dynamic = (0, combi_1.seq)("ENTITIES", (0, combi_1.optPrio)((0, combi_1.altPrio)("IN LOCAL MODE", (0, combi_1.seq)((0, combi_1.opt)("FORWARDING"), "PRIVILEGED"))), "OPERATIONS", expressions_1.Source);
|
|
26
27
|
const create2 = (0, combi_1.seq)("CREATE", fieldsWith, (0, combi_1.opt)((0, combi_1.seq)("CREATE BY", expressions_1.EMLEntityPath, fieldsWith)));
|
|
27
28
|
const create3 = (0, combi_1.seq)("CREATE BY", expressions_1.EMLEntityPath, fieldsWith);
|
|
28
29
|
const create4 = (0, combi_1.seq)("CREATE FROM", expressions_1.Source, (0, combi_1.plus)((0, combi_1.seq)("CREATE BY", expressions_1.EMLEntityPath, "FROM", expressions_1.Source)));
|
|
29
30
|
const entity = (0, combi_1.seq)("ENTITY", (0, combi_1.opt)("IN LOCAL MODE"), (0, combi_1.alt)(expressions_1.NamespaceSimpleName, expressions_1.EntityAssociation), (0, combi_1.alt)(execute, create, updateFields, deleteFrom, updateSetFields, updateFrom, create2, create3, create4));
|
|
30
|
-
return (0, combi_1.ver)(version_1.Release.v754, (0, combi_1.seq)("MODIFY", (0, combi_1.alt)(entities, entity), end), { also: combi_1.AlsoIn.OpenABAP });
|
|
31
|
+
return (0, combi_1.ver)(version_1.Release.v754, (0, combi_1.seq)("MODIFY", (0, combi_1.alt)(entities, dynamic, entity), end), { also: combi_1.AlsoIn.OpenABAP });
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
exports.ModifyEntities = ModifyEntities;
|
|
@@ -98,6 +98,7 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
98
98
|
this.checkInterfaceVisibility(input, node);
|
|
99
99
|
this.checkMethodsFromSuperClasses(input);
|
|
100
100
|
this.checkMethodNameConflicts(input);
|
|
101
|
+
this.checkEventNameConflicts(input);
|
|
101
102
|
this.checkClassNameLength(input);
|
|
102
103
|
this.checkMethodNameLength(input);
|
|
103
104
|
this.checkClassConstructorStatic(input);
|
|
@@ -237,6 +238,15 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
237
238
|
}
|
|
238
239
|
}
|
|
239
240
|
}
|
|
241
|
+
checkEventNameConflicts(input) {
|
|
242
|
+
for (const e of this.events) {
|
|
243
|
+
if (this.attributes.findByName(e.getName()) !== undefined
|
|
244
|
+
|| this.types.getByName(e.getName()) !== undefined
|
|
245
|
+
|| this.methodDefs.getByName(e.getName()) !== undefined) {
|
|
246
|
+
input.issues.push((0, _syntax_input_1.syntaxIssue)(input, e.getToken(), `"${e.getName()}" already defined`));
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
240
250
|
findFriends(def, input) {
|
|
241
251
|
var _a;
|
|
242
252
|
const result = [];
|
package/build/src/registry.js
CHANGED