@abaplint/core 2.103.0 → 2.103.2
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 +40 -0
- package/build/src/abap/2_statements/expressions/data_definition.js +1 -1
- package/build/src/abap/2_statements/expressions/index.js +1 -0
- package/build/src/abap/2_statements/expressions/type_hierarchy.js +14 -0
- package/build/src/abap/2_statements/expressions/type_table.js +1 -1
- package/build/src/abap/2_statements/statements/index.js +1 -0
- package/build/src/abap/2_statements/statements/raise_entity_event.js +12 -0
- package/build/src/abap/2_statements/statements/type.js +1 -1
- package/build/src/abap/2_statements/statements/write.js +1 -1
- package/build/src/abap/5_syntax/expressions/select.js +1 -1
- package/build/src/abap/types/class_definition.js +3 -2
- package/build/src/objects/application_log_object.js +21 -0
- package/build/src/objects/event_consumer.js +21 -0
- package/build/src/objects/index.js +4 -0
- package/build/src/objects/query_user_group.js +21 -0
- package/build/src/registry.js +1 -1
- package/build/src/rules/cloud_types.js +3 -0
- package/package.json +2 -2
package/build/abaplint.d.ts
CHANGED
|
@@ -193,6 +193,15 @@ declare class ApplicationJobTemplate extends AbstractObject {
|
|
|
193
193
|
getDescription(): string | undefined;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
|
+
declare class ApplicationLogObject extends AbstractObject {
|
|
197
|
+
getType(): string;
|
|
198
|
+
getAllowedNaming(): {
|
|
199
|
+
maxLength: number;
|
|
200
|
+
allowNamespace: boolean;
|
|
201
|
+
};
|
|
202
|
+
getDescription(): string | undefined;
|
|
203
|
+
}
|
|
204
|
+
|
|
196
205
|
/** returns list of filenames which were changed */
|
|
197
206
|
export declare function applyEditList(reg: IRegistry, edits: IEdit[]): string[];
|
|
198
207
|
|
|
@@ -1950,6 +1959,15 @@ declare class EventBinding extends AbstractObject {
|
|
|
1950
1959
|
getDescription(): string | undefined;
|
|
1951
1960
|
}
|
|
1952
1961
|
|
|
1962
|
+
declare class EventConsumer extends AbstractObject {
|
|
1963
|
+
getType(): string;
|
|
1964
|
+
getAllowedNaming(): {
|
|
1965
|
+
maxLength: number;
|
|
1966
|
+
allowNamespace: boolean;
|
|
1967
|
+
};
|
|
1968
|
+
getDescription(): string | undefined;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1953
1971
|
declare class EventHandler extends Expression {
|
|
1954
1972
|
getRunnable(): IStatementRunnable;
|
|
1955
1973
|
}
|
|
@@ -2216,6 +2234,7 @@ declare namespace Expressions {
|
|
|
2216
2234
|
StringTemplateSource,
|
|
2217
2235
|
StringTemplate,
|
|
2218
2236
|
SuperClassName,
|
|
2237
|
+
TypeHierarchy,
|
|
2219
2238
|
SwitchBody,
|
|
2220
2239
|
TableBody,
|
|
2221
2240
|
TableExpression,
|
|
@@ -4345,6 +4364,7 @@ declare namespace Objects {
|
|
|
4345
4364
|
export {
|
|
4346
4365
|
ActivationVariant,
|
|
4347
4366
|
APIReleaseState,
|
|
4367
|
+
ApplicationLogObject,
|
|
4348
4368
|
ApplicationJobCatalogEntry,
|
|
4349
4369
|
ApplicationJobTemplate,
|
|
4350
4370
|
AssignmentServiceToAuthorizationGroup,
|
|
@@ -4396,6 +4416,7 @@ declare namespace Objects {
|
|
|
4396
4416
|
IBadiDefinition,
|
|
4397
4417
|
EnhancementSpot,
|
|
4398
4418
|
EventBinding,
|
|
4419
|
+
EventConsumer,
|
|
4399
4420
|
ExtensionIndex,
|
|
4400
4421
|
FieldCatalog,
|
|
4401
4422
|
FormObjectForm,
|
|
@@ -4442,6 +4463,7 @@ declare namespace Objects {
|
|
|
4442
4463
|
Program,
|
|
4443
4464
|
ProxyObject,
|
|
4444
4465
|
PushChannel,
|
|
4466
|
+
QueryUserGroup,
|
|
4445
4467
|
RestrictionField,
|
|
4446
4468
|
RestrictionType,
|
|
4447
4469
|
RFCService,
|
|
@@ -4801,6 +4823,15 @@ declare class Put implements IStatement {
|
|
|
4801
4823
|
getMatcher(): IStatementRunnable;
|
|
4802
4824
|
}
|
|
4803
4825
|
|
|
4826
|
+
declare class QueryUserGroup extends AbstractObject {
|
|
4827
|
+
getType(): string;
|
|
4828
|
+
getAllowedNaming(): {
|
|
4829
|
+
maxLength: number;
|
|
4830
|
+
allowNamespace: boolean;
|
|
4831
|
+
};
|
|
4832
|
+
getDescription(): string | undefined;
|
|
4833
|
+
}
|
|
4834
|
+
|
|
4804
4835
|
declare class RadioGroupName extends Expression {
|
|
4805
4836
|
getRunnable(): IStatementRunnable;
|
|
4806
4837
|
}
|
|
@@ -4809,6 +4840,10 @@ declare class Raise implements IStatement {
|
|
|
4809
4840
|
getMatcher(): IStatementRunnable;
|
|
4810
4841
|
}
|
|
4811
4842
|
|
|
4843
|
+
declare class RaiseEntityEvent implements IStatement {
|
|
4844
|
+
getMatcher(): IStatementRunnable;
|
|
4845
|
+
}
|
|
4846
|
+
|
|
4812
4847
|
declare class RaiseEvent implements IStatement {
|
|
4813
4848
|
getMatcher(): IStatementRunnable;
|
|
4814
4849
|
}
|
|
@@ -5824,6 +5859,7 @@ declare namespace Statements {
|
|
|
5824
5859
|
EndOn,
|
|
5825
5860
|
FetchNextCursor,
|
|
5826
5861
|
Reserve,
|
|
5862
|
+
RaiseEntityEvent,
|
|
5827
5863
|
RefreshControl,
|
|
5828
5864
|
DeleteDynpro,
|
|
5829
5865
|
GenerateDynpro,
|
|
@@ -6497,6 +6533,10 @@ declare class TypeEnumEnd implements IStatement {
|
|
|
6497
6533
|
getMatcher(): IStatementRunnable;
|
|
6498
6534
|
}
|
|
6499
6535
|
|
|
6536
|
+
declare class TypeHierarchy extends Expression {
|
|
6537
|
+
getRunnable(): IStatementRunnable;
|
|
6538
|
+
}
|
|
6539
|
+
|
|
6500
6540
|
declare class TypeMesh implements IStructure {
|
|
6501
6541
|
getMatcher(): IStructureRunnable;
|
|
6502
6542
|
}
|
|
@@ -7,7 +7,7 @@ class DataDefinition extends combi_1.Expression {
|
|
|
7
7
|
getRunnable() {
|
|
8
8
|
const simple = (0, combi_1.opt)((0, combi_1.per)("READ-ONLY", Expressions.Type, Expressions.Length, Expressions.Decimals, Expressions.Value));
|
|
9
9
|
const table = (0, combi_1.seq)(Expressions.TypeTable, (0, combi_1.optPrio)("READ-ONLY"));
|
|
10
|
-
return (0, combi_1.seq)(Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(simple, table));
|
|
10
|
+
return (0, combi_1.seq)(Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(simple, table, Expressions.TypeHierarchy));
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
exports.DataDefinition = DataDefinition;
|
|
@@ -206,6 +206,7 @@ __exportStar(require("./string_template_formatting"), exports);
|
|
|
206
206
|
__exportStar(require("./string_template_source"), exports);
|
|
207
207
|
__exportStar(require("./string_template"), exports);
|
|
208
208
|
__exportStar(require("./super_class_name"), exports);
|
|
209
|
+
__exportStar(require("./type_hierarchy"), exports);
|
|
209
210
|
__exportStar(require("./switch_body"), exports);
|
|
210
211
|
__exportStar(require("./table_body"), exports);
|
|
211
212
|
__exportStar(require("./table_expression"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TypeHierarchy = void 0;
|
|
4
|
+
const combi_1 = require("../combi");
|
|
5
|
+
const _1 = require(".");
|
|
6
|
+
class TypeHierarchy extends combi_1.Expression {
|
|
7
|
+
getRunnable() {
|
|
8
|
+
// todo, add version,
|
|
9
|
+
const hier = (0, combi_1.seq)("TYPE STRUCTURE FOR HIERARCHY", _1.NamespaceSimpleName);
|
|
10
|
+
return hier;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.TypeHierarchy = TypeHierarchy;
|
|
14
|
+
//# sourceMappingURL=type_hierarchy.js.map
|
|
@@ -19,7 +19,7 @@ class TypeTable extends combi_1.Expression {
|
|
|
19
19
|
// "WITH" is not allowed as a field name in keys
|
|
20
20
|
const typetable = (0, combi_1.alt)(generic, (0, combi_1.seq)(normal1, (0, combi_1.alt)((0, combi_1.opt)((0, combi_1.per)(header, initial, (0, combi_1.plusPrio)(type_table_key_1.TypeTableKey))), (0, combi_1.seq)((0, combi_1.plus)(type_table_key_1.TypeTableKey), (0, combi_1.optPrio)(initial)))));
|
|
21
21
|
const occurs = (0, combi_1.seq)("OCCURS", _1.Integer);
|
|
22
|
-
const derived = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("TABLE FOR", (0, combi_1.altPrio)("ACTION IMPORT", "ACTION RESULT", "CREATE", "FAILED", "LOCK", "READ RESULT", "UPDATE"), _1.TypeName));
|
|
22
|
+
const derived = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("TABLE FOR", (0, combi_1.altPrio)("ACTION IMPORT", "ACTION RESULT", "CREATE", "EVENT", "FAILED", "LOCK", "READ RESULT", "UPDATE"), _1.TypeName));
|
|
23
23
|
const oldType = (0, combi_1.seq)((0, combi_1.opt)("REF TO"), _1.TypeName, (0, combi_1.alt)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), header));
|
|
24
24
|
const oldLike = (0, combi_1.seq)((0, combi_1.opt)("REF TO"), field_chain_1.FieldChain, (0, combi_1.alt)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), header));
|
|
25
25
|
const ret = (0, combi_1.altPrio)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), (0, combi_1.seq)("LIKE", (0, combi_1.alt)(oldLike, likeType, rangeLike)), (0, combi_1.seq)("TYPE", (0, combi_1.alt)(oldType, typetable, rangeType, derived)));
|
|
@@ -234,6 +234,7 @@ __exportStar(require("./free"), exports);
|
|
|
234
234
|
__exportStar(require("./endon"), exports);
|
|
235
235
|
__exportStar(require("./fetch_next_cursor"), exports);
|
|
236
236
|
__exportStar(require("./reserve"), exports);
|
|
237
|
+
__exportStar(require("./raise_entity_event"), exports);
|
|
237
238
|
__exportStar(require("./refresh_control"), exports);
|
|
238
239
|
__exportStar(require("./delete_dynpro"), exports);
|
|
239
240
|
__exportStar(require("./generate_dynpro"), exports);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RaiseEntityEvent = void 0;
|
|
4
|
+
const combi_1 = require("../combi");
|
|
5
|
+
const expressions_1 = require("../expressions");
|
|
6
|
+
class RaiseEntityEvent {
|
|
7
|
+
getMatcher() {
|
|
8
|
+
return (0, combi_1.seq)("RAISE ENTITY EVENT", expressions_1.EventName, "FROM", expressions_1.Source);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.RaiseEntityEvent = RaiseEntityEvent;
|
|
12
|
+
//# sourceMappingURL=raise_entity_event.js.map
|
|
@@ -7,7 +7,7 @@ const version_1 = require("../../../version");
|
|
|
7
7
|
class Type {
|
|
8
8
|
getMatcher() {
|
|
9
9
|
const simple = (0, combi_1.per)(Expressions.Type, Expressions.Decimals, Expressions.Length);
|
|
10
|
-
const def = (0, combi_1.seq)(Expressions.NamespaceSimpleName, (0, combi_1.opt)(Expressions.ConstantFieldLength), (0, combi_1.opt)((0, combi_1.alt)(simple, Expressions.TypeTable)));
|
|
10
|
+
const def = (0, combi_1.seq)(Expressions.NamespaceSimpleName, (0, combi_1.opt)(Expressions.ConstantFieldLength), (0, combi_1.opt)((0, combi_1.alt)(simple, Expressions.TypeTable, Expressions.TypeHierarchy)));
|
|
11
11
|
// todo, BOXED is only allowed with structures inside structures?
|
|
12
12
|
const boxed = (0, combi_1.ver)(version_1.Version.v702, "BOXED");
|
|
13
13
|
const ret = (0, combi_1.seq)("TYPES", def, (0, combi_1.opt)(boxed));
|
|
@@ -12,7 +12,7 @@ class Write {
|
|
|
12
12
|
const as = (0, combi_1.seq)("AS", (0, combi_1.altPrio)("LINE", "ICON", "CHECKBOX", "SYMBOL"));
|
|
13
13
|
const to = (0, combi_1.seq)("TO", expressions_1.Target);
|
|
14
14
|
const options = (0, combi_1.per)(mask, to, (0, combi_1.seq)("EXPONENT", expressions_1.Source), "NO-GROUPING", "NO-ZERO", "CENTERED", (0, combi_1.seq)("INPUT", (0, combi_1.opt)(onOff)), "NO-GAP", "LEFT-JUSTIFIED", as, (0, combi_1.seq)("FRAMES", onOff), (0, combi_1.seq)("HOTSPOT", (0, combi_1.opt)(onOff)), "RIGHT-JUSTIFIED", (0, combi_1.seq)("TIME ZONE", expressions_1.Source), (0, combi_1.seq)("UNDER", expressions_1.Source), (0, combi_1.seq)("STYLE", expressions_1.Source), (0, combi_1.seq)("ROUND", expressions_1.Source), (0, combi_1.seq)("QUICKINFO", expressions_1.Source), "ENVIRONMENT TIME FORMAT", dateFormat, (0, combi_1.seq)("UNIT", expressions_1.Source), (0, combi_1.seq)("INTENSIFIED", (0, combi_1.opt)(onOff)), (0, combi_1.seq)("INDEX", expressions_1.Source), (0, combi_1.seq)("DECIMALS", expressions_1.Source), (0, combi_1.seq)("INVERSE", (0, combi_1.opt)(onOff)), expressions_1.Color, (0, combi_1.seq)("CURRENCY", expressions_1.Source), "NO-SIGN");
|
|
15
|
-
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.altPrio)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options));
|
|
15
|
+
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.alt)("AT /", (0, combi_1.seq)((0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.altPrio)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options))));
|
|
16
16
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -18,7 +18,7 @@ class Select {
|
|
|
18
18
|
const token = node.getFirstToken();
|
|
19
19
|
const from = node.findDirectExpression(Expressions.SQLFrom);
|
|
20
20
|
const dbSources = from ? new sql_from_1.SQLFrom().runSyntax(from, scope, filename) : [];
|
|
21
|
-
if (
|
|
21
|
+
if (from === undefined) {
|
|
22
22
|
throw new Error(`Missing FROM`);
|
|
23
23
|
}
|
|
24
24
|
const fields = this.findFields(node);
|
|
@@ -107,13 +107,14 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
107
107
|
while (sup !== undefined) {
|
|
108
108
|
const cdef = scope.findClassDefinition(sup);
|
|
109
109
|
for (const m of ((_a = cdef === null || cdef === void 0 ? void 0 : cdef.getMethodDefinitions()) === null || _a === void 0 ? void 0 : _a.getAll()) || []) {
|
|
110
|
+
const name = m.getName().toUpperCase();
|
|
110
111
|
if (m.getVisibility() === visibility_1.Visibility.Private) {
|
|
111
112
|
continue;
|
|
112
113
|
}
|
|
113
|
-
else if (
|
|
114
|
+
else if (name === "CONSTRUCTOR" || name === "CLASS_CONSTRUCTOR") {
|
|
114
115
|
continue;
|
|
115
116
|
}
|
|
116
|
-
names.add(
|
|
117
|
+
names.add(name);
|
|
117
118
|
}
|
|
118
119
|
for (const a of (cdef === null || cdef === void 0 ? void 0 : cdef.getAliases().getAll()) || []) {
|
|
119
120
|
names.add(a.getName().toUpperCase());
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApplicationLogObject = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ApplicationLogObject extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "APLO";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 200,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ApplicationLogObject = ApplicationLogObject;
|
|
21
|
+
//# sourceMappingURL=application_log_object.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EventConsumer = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class EventConsumer extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "EEEC";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 200,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.EventConsumer = EventConsumer;
|
|
21
|
+
//# sourceMappingURL=event_consumer.js.map
|
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./activation_variant"), exports);
|
|
18
18
|
__exportStar(require("./api_release_state"), exports);
|
|
19
|
+
__exportStar(require("./application_log_object"), exports);
|
|
19
20
|
__exportStar(require("./application_job_catalog_entry"), exports);
|
|
20
21
|
__exportStar(require("./application_job_template"), exports);
|
|
21
22
|
__exportStar(require("./assignment_service_to_authorization_group"), exports);
|
|
@@ -62,6 +63,8 @@ __exportStar(require("./ecatt_test_script"), exports);
|
|
|
62
63
|
__exportStar(require("./enhancement_implementation"), exports);
|
|
63
64
|
__exportStar(require("./enhancement_spot"), exports);
|
|
64
65
|
__exportStar(require("./event_binding"), exports);
|
|
66
|
+
__exportStar(require("./event_consumer"), exports);
|
|
67
|
+
__exportStar(require("./event_binding"), exports);
|
|
65
68
|
__exportStar(require("./extension_index"), exports);
|
|
66
69
|
__exportStar(require("./field_catalog"), exports);
|
|
67
70
|
__exportStar(require("./form_object_form"), exports);
|
|
@@ -105,6 +108,7 @@ __exportStar(require("./personalization_object"), exports);
|
|
|
105
108
|
__exportStar(require("./program"), exports);
|
|
106
109
|
__exportStar(require("./proxy_object"), exports);
|
|
107
110
|
__exportStar(require("./push_channel"), exports);
|
|
111
|
+
__exportStar(require("./query_user_group"), exports);
|
|
108
112
|
__exportStar(require("./restriction_field"), exports);
|
|
109
113
|
__exportStar(require("./restriction_type"), exports);
|
|
110
114
|
__exportStar(require("./rfc_service"), exports);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QueryUserGroup = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class QueryUserGroup extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "AQBG";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 200,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.QueryUserGroup = QueryUserGroup;
|
|
21
|
+
//# sourceMappingURL=query_user_group.js.map
|
package/build/src/registry.js
CHANGED
|
@@ -51,11 +51,14 @@ class CloudTypes {
|
|
|
51
51
|
|| obj instanceof Objects.BusinessCatalogAppAssignment
|
|
52
52
|
|| obj instanceof Objects.CDSMetadataExtension
|
|
53
53
|
|| obj instanceof Objects.Class
|
|
54
|
+
|| obj instanceof Objects.ApplicationLogObject
|
|
54
55
|
|| obj instanceof Objects.CommunicationScenario
|
|
55
56
|
|| obj instanceof Objects.DataControl
|
|
56
57
|
|| obj instanceof Objects.DataDefinition
|
|
57
58
|
|| obj instanceof Objects.DataElement
|
|
58
59
|
|| obj instanceof Objects.Domain
|
|
60
|
+
|| obj instanceof Objects.EventBinding
|
|
61
|
+
|| obj instanceof Objects.EventConsumer
|
|
59
62
|
|| obj instanceof Objects.FunctionGroup
|
|
60
63
|
|| obj instanceof Objects.HttpService
|
|
61
64
|
|| obj instanceof Objects.IAMApp
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.2",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@microsoft/api-extractor": "^7.38.2",
|
|
54
54
|
"@types/chai": "^4.3.9",
|
|
55
|
-
"@types/mocha": "^10.0.
|
|
55
|
+
"@types/mocha": "^10.0.4",
|
|
56
56
|
"@types/node": "^20.8.10",
|
|
57
57
|
"chai": "^4.3.10",
|
|
58
58
|
"eslint": "^8.53.0",
|