@abaplint/core 2.113.116 → 2.113.117
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 +15 -5
- package/build/src/abap/2_statements/statements/add.js +3 -3
- package/build/src/abap/2_statements/statements/dynpro_loop.js +3 -2
- package/build/src/abap/2_statements/statements/field.js +2 -1
- package/build/src/objects/index.js +5 -4
- package/build/src/objects/info_area.js +21 -0
- package/build/src/registry.js +1 -1
- package/package.json +1 -1
package/build/abaplint.d.ts
CHANGED
|
@@ -3514,6 +3514,15 @@ declare interface InfoAlias {
|
|
|
3514
3514
|
component: string;
|
|
3515
3515
|
}
|
|
3516
3516
|
|
|
3517
|
+
declare class InfoArea extends AbstractObject {
|
|
3518
|
+
getType(): string;
|
|
3519
|
+
getAllowedNaming(): {
|
|
3520
|
+
maxLength: number;
|
|
3521
|
+
allowNamespace: boolean;
|
|
3522
|
+
};
|
|
3523
|
+
getDescription(): string | undefined;
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3517
3526
|
declare interface InfoAttribute {
|
|
3518
3527
|
name: string;
|
|
3519
3528
|
identifier: Identifier;
|
|
@@ -4874,6 +4883,7 @@ declare namespace Objects {
|
|
|
4874
4883
|
ABAPQueryQuery,
|
|
4875
4884
|
ActivationVariant,
|
|
4876
4885
|
APIReleaseState,
|
|
4886
|
+
ApplicationDescriptorsFiori,
|
|
4877
4887
|
ApplicationJobCatalogEntry,
|
|
4878
4888
|
ApplicationJobTemplate,
|
|
4879
4889
|
ApplicationLogObject,
|
|
@@ -4882,11 +4892,11 @@ declare namespace Objects {
|
|
|
4882
4892
|
ATCCheckObject,
|
|
4883
4893
|
ATCCheckVariant,
|
|
4884
4894
|
AuthorizationCheckField,
|
|
4885
|
-
ApplicationDescriptorsFiori,
|
|
4886
4895
|
AuthorizationGroup,
|
|
4887
4896
|
AuthorizationObjectClass,
|
|
4888
4897
|
AuthorizationObjectExtension,
|
|
4889
4898
|
AuthorizationObject,
|
|
4899
|
+
BADIDefinition,
|
|
4890
4900
|
BehaviorDefinition,
|
|
4891
4901
|
BRFPlusSystemApplication,
|
|
4892
4902
|
BSPApplication,
|
|
@@ -4900,8 +4910,6 @@ declare namespace Objects {
|
|
|
4900
4910
|
BusinessObjectType,
|
|
4901
4911
|
ParsedMetadataExtension,
|
|
4902
4912
|
CDSMetadataExtension,
|
|
4903
|
-
BADIDefinition,
|
|
4904
|
-
EntityType,
|
|
4905
4913
|
CDSType,
|
|
4906
4914
|
ChangeDocument,
|
|
4907
4915
|
ChapterOfBookStructure,
|
|
@@ -4931,6 +4939,7 @@ declare namespace Objects {
|
|
|
4931
4939
|
EnhancementImplementation,
|
|
4932
4940
|
IBadiDefinition,
|
|
4933
4941
|
EnhancementSpot,
|
|
4942
|
+
EntityType,
|
|
4934
4943
|
EventBinding,
|
|
4935
4944
|
EventConsumer,
|
|
4936
4945
|
ExtensionIndex,
|
|
@@ -4943,7 +4952,6 @@ declare namespace Objects {
|
|
|
4943
4952
|
GatewayModel,
|
|
4944
4953
|
GatewayProject,
|
|
4945
4954
|
GatewayServiceGroupsMetadata,
|
|
4946
|
-
WebReportingTemplate,
|
|
4947
4955
|
GatewayService,
|
|
4948
4956
|
GatewayVocabularyAnnotation,
|
|
4949
4957
|
GeneralHierarchyStorageExtrensionName,
|
|
@@ -4959,6 +4967,7 @@ declare namespace Objects {
|
|
|
4959
4967
|
IdocExtension,
|
|
4960
4968
|
Idoc,
|
|
4961
4969
|
InboundService,
|
|
4970
|
+
InfoArea,
|
|
4962
4971
|
InfoObject,
|
|
4963
4972
|
Interface,
|
|
4964
4973
|
LockObject,
|
|
@@ -5033,7 +5042,8 @@ declare namespace Objects {
|
|
|
5033
5042
|
WebDynproApplication,
|
|
5034
5043
|
WebDynproComponentConfiguration,
|
|
5035
5044
|
WebDynproComponent,
|
|
5036
|
-
WebMIME
|
|
5045
|
+
WebMIME,
|
|
5046
|
+
WebReportingTemplate
|
|
5037
5047
|
}
|
|
5038
5048
|
}
|
|
5039
5049
|
export { Objects }
|
|
@@ -6,9 +6,9 @@ const expressions_1 = require("../expressions");
|
|
|
6
6
|
class Add {
|
|
7
7
|
getMatcher() {
|
|
8
8
|
const to = (0, combi_1.seq)("TO", expressions_1.Target);
|
|
9
|
-
const accordingTo = (0, combi_1.seq)("ACCORDING TO", expressions_1.
|
|
10
|
-
const giving = (0, combi_1.seq)("GIVING", expressions_1.
|
|
11
|
-
const then = (0, combi_1.seq)("THEN", expressions_1.
|
|
9
|
+
const accordingTo = (0, combi_1.seq)("ACCORDING TO", expressions_1.Source);
|
|
10
|
+
const giving = (0, combi_1.seq)("GIVING", expressions_1.Source);
|
|
11
|
+
const then = (0, combi_1.seq)("THEN", expressions_1.Source, "UNTIL", expressions_1.Source, (0, combi_1.opt)((0, combi_1.per)(giving, accordingTo)), (0, combi_1.opt)(to));
|
|
12
12
|
const ret = (0, combi_1.seq)("ADD", expressions_1.Source, (0, combi_1.altPrio)(to, then));
|
|
13
13
|
return ret;
|
|
14
14
|
}
|
|
@@ -8,8 +8,9 @@ class DynproLoop {
|
|
|
8
8
|
const into = (0, combi_1.seq)("INTO", simple_source2_1.SimpleSource2);
|
|
9
9
|
const cursor = (0, combi_1.seq)("CURSOR", simple_source2_1.SimpleSource2);
|
|
10
10
|
const withControl = (0, combi_1.seq)("WITH CONTROL", simple_source2_1.SimpleSource2);
|
|
11
|
-
const
|
|
12
|
-
|
|
11
|
+
const from = (0, combi_1.seq)("FROM", simple_source2_1.SimpleSource2);
|
|
12
|
+
const to = (0, combi_1.seq)("TO", simple_source2_1.SimpleSource2);
|
|
13
|
+
return (0, combi_1.seq)("LOOP AT", simple_source2_1.SimpleSource2, (0, combi_1.per)(into, withControl, cursor, from, to));
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
exports.DynproLoop = DynproLoop;
|
|
@@ -9,7 +9,8 @@ class Field {
|
|
|
9
9
|
getMatcher() {
|
|
10
10
|
const module = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST", "ON CHAIN-REQUEST")));
|
|
11
11
|
const values = (0, combi_1.seq)("VALUES", (0, combi_1.tok)(tokens_1.WParenLeft), "BETWEEN", expressions_1.Constant, "AND", expressions_1.Constant, (0, combi_1.tok)(tokens_1.ParenRightW));
|
|
12
|
-
const
|
|
12
|
+
const wit = (0, combi_1.seq)("WITH", expressions_1.FieldChain);
|
|
13
|
+
const ret = (0, combi_1.seq)("FIELD", expressions_1.FieldChain, (0, combi_1.opt)((0, combi_1.altPrio)(module, values, wit)));
|
|
13
14
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
14
15
|
}
|
|
15
16
|
}
|
|
@@ -18,6 +18,7 @@ __exportStar(require("./abap_query_functional_area"), exports);
|
|
|
18
18
|
__exportStar(require("./abap_query_query"), exports);
|
|
19
19
|
__exportStar(require("./activation_variant"), exports);
|
|
20
20
|
__exportStar(require("./api_release_state"), exports);
|
|
21
|
+
__exportStar(require("./application_descriptors_fiori"), exports);
|
|
21
22
|
__exportStar(require("./application_job_catalog_entry"), exports);
|
|
22
23
|
__exportStar(require("./application_job_template"), exports);
|
|
23
24
|
__exportStar(require("./application_log_object"), exports);
|
|
@@ -26,11 +27,11 @@ __exportStar(require("./atc_check_category"), exports);
|
|
|
26
27
|
__exportStar(require("./atc_check_object"), exports);
|
|
27
28
|
__exportStar(require("./atc_check_variant"), exports);
|
|
28
29
|
__exportStar(require("./authorization_check_field"), exports);
|
|
29
|
-
__exportStar(require("./application_descriptors_fiori"), exports);
|
|
30
30
|
__exportStar(require("./authorization_group"), exports);
|
|
31
31
|
__exportStar(require("./authorization_object_class"), exports);
|
|
32
32
|
__exportStar(require("./authorization_object_extension"), exports);
|
|
33
33
|
__exportStar(require("./authorization_object"), exports);
|
|
34
|
+
__exportStar(require("./badi_definition"), exports);
|
|
34
35
|
__exportStar(require("./behavior_definition"), exports);
|
|
35
36
|
__exportStar(require("./brf_plus_system_application"), exports);
|
|
36
37
|
__exportStar(require("./bsp_application"), exports);
|
|
@@ -43,8 +44,6 @@ __exportStar(require("./business_function_set_assignment"), exports);
|
|
|
43
44
|
__exportStar(require("./business_object_model"), exports);
|
|
44
45
|
__exportStar(require("./business_object_type"), exports);
|
|
45
46
|
__exportStar(require("./cds_metadata_extension"), exports);
|
|
46
|
-
__exportStar(require("./badi_definition"), exports);
|
|
47
|
-
__exportStar(require("./entity_type"), exports);
|
|
48
47
|
__exportStar(require("./cds_type"), exports);
|
|
49
48
|
__exportStar(require("./change_document"), exports);
|
|
50
49
|
__exportStar(require("./chapter_of_book_structure"), exports);
|
|
@@ -70,6 +69,7 @@ __exportStar(require("./ecatt_test_data_container"), exports);
|
|
|
70
69
|
__exportStar(require("./ecatt_test_script"), exports);
|
|
71
70
|
__exportStar(require("./enhancement_implementation"), exports);
|
|
72
71
|
__exportStar(require("./enhancement_spot"), exports);
|
|
72
|
+
__exportStar(require("./entity_type"), exports);
|
|
73
73
|
__exportStar(require("./event_binding"), exports);
|
|
74
74
|
__exportStar(require("./event_binding"), exports);
|
|
75
75
|
__exportStar(require("./event_consumer"), exports);
|
|
@@ -83,7 +83,6 @@ __exportStar(require("./gateway_model_metadata"), exports);
|
|
|
83
83
|
__exportStar(require("./gateway_model"), exports);
|
|
84
84
|
__exportStar(require("./gateway_project"), exports);
|
|
85
85
|
__exportStar(require("./gateway_service_groups_metadata"), exports);
|
|
86
|
-
__exportStar(require("./web_reporting_template"), exports);
|
|
87
86
|
__exportStar(require("./gateway_service"), exports);
|
|
88
87
|
__exportStar(require("./gateway_vocabulary_annotation"), exports);
|
|
89
88
|
__exportStar(require("./general_hierarchy_storage_extrension_name"), exports);
|
|
@@ -99,6 +98,7 @@ __exportStar(require("./icf_service"), exports);
|
|
|
99
98
|
__exportStar(require("./idoc_extension"), exports);
|
|
100
99
|
__exportStar(require("./idoc"), exports);
|
|
101
100
|
__exportStar(require("./inbound_service"), exports);
|
|
101
|
+
__exportStar(require("./info_area"), exports);
|
|
102
102
|
__exportStar(require("./info_object"), exports);
|
|
103
103
|
__exportStar(require("./interface"), exports);
|
|
104
104
|
__exportStar(require("./lock_object"), exports);
|
|
@@ -172,4 +172,5 @@ __exportStar(require("./web_dynpro_application"), exports);
|
|
|
172
172
|
__exportStar(require("./web_dynpro_component_configuration"), exports);
|
|
173
173
|
__exportStar(require("./web_dynpro_component"), exports);
|
|
174
174
|
__exportStar(require("./web_mime"), exports);
|
|
175
|
+
__exportStar(require("./web_reporting_template"), exports);
|
|
175
176
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InfoArea = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class InfoArea extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "AREA";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.InfoArea = InfoArea;
|
|
21
|
+
//# sourceMappingURL=info_area.js.map
|
package/build/src/registry.js
CHANGED