@abaplint/core 2.113.77 → 2.113.78
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
|
@@ -946,7 +946,11 @@ declare class CGenericType extends AbstractType {
|
|
|
946
946
|
toCDS(): string;
|
|
947
947
|
}
|
|
948
948
|
|
|
949
|
-
declare class Chain implements
|
|
949
|
+
declare class Chain implements IStructure {
|
|
950
|
+
getMatcher(): IStructureRunnable;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
declare class Chain_2 implements IStatement {
|
|
950
954
|
getMatcher(): IStatementRunnable;
|
|
951
955
|
}
|
|
952
956
|
|
|
@@ -6508,7 +6512,7 @@ declare namespace Statements {
|
|
|
6508
6512
|
DeleteMemory,
|
|
6509
6513
|
Provide_2 as Provide,
|
|
6510
6514
|
EndExec,
|
|
6511
|
-
Chain,
|
|
6515
|
+
Chain_2 as Chain,
|
|
6512
6516
|
EndChain,
|
|
6513
6517
|
CallSubscreen,
|
|
6514
6518
|
SortDataset,
|
|
@@ -6629,6 +6633,7 @@ declare namespace Structures {
|
|
|
6629
6633
|
ClassData,
|
|
6630
6634
|
ClassDefinition,
|
|
6631
6635
|
ClassGlobal,
|
|
6636
|
+
Chain,
|
|
6632
6637
|
ClassImplementation,
|
|
6633
6638
|
Cleanup,
|
|
6634
6639
|
Constants,
|
|
@@ -6,7 +6,7 @@ const expressions_1 = require("../expressions");
|
|
|
6
6
|
const version_1 = require("../../../version");
|
|
7
7
|
class Field {
|
|
8
8
|
getMatcher() {
|
|
9
|
-
const ret = (0, combi_1.seq)("FIELD", expressions_1.FieldChain, "MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST")));
|
|
9
|
+
const ret = (0, combi_1.seq)("FIELD", expressions_1.FieldChain, (0, combi_1.opt)((0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST")))));
|
|
10
10
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
11
11
|
}
|
|
12
12
|
}
|
|
@@ -26,6 +26,7 @@ __exportStar(require("./catch"), exports);
|
|
|
26
26
|
__exportStar(require("./class_data"), exports);
|
|
27
27
|
__exportStar(require("./class_definition"), exports);
|
|
28
28
|
__exportStar(require("./class_global"), exports);
|
|
29
|
+
__exportStar(require("./chain"), exports);
|
|
29
30
|
__exportStar(require("./class_implementation"), exports);
|
|
30
31
|
__exportStar(require("./cleanup"), exports);
|
|
31
32
|
__exportStar(require("./constants"), exports);
|
package/build/src/registry.js
CHANGED