@abaplint/core 2.113.76 → 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 +15 -0
- package/build/src/abap/2_statements/statements/chain.js +12 -0
- package/build/src/abap/2_statements/statements/end_chain.js +12 -0
- package/build/src/abap/2_statements/statements/field.js +1 -1
- package/build/src/abap/2_statements/statements/index.js +2 -0
- package/build/src/abap/2_statements/statements/module.js +1 -1
- package/build/src/abap/3_structures/structures/chain.js +12 -0
- package/build/src/abap/3_structures/structures/dynpro_logic.js +2 -1
- package/build/src/abap/3_structures/structures/index.js +1 -0
- package/build/src/registry.js +1 -1
- package/package.json +1 -1
package/build/abaplint.d.ts
CHANGED
|
@@ -946,6 +946,14 @@ declare class CGenericType extends AbstractType {
|
|
|
946
946
|
toCDS(): string;
|
|
947
947
|
}
|
|
948
948
|
|
|
949
|
+
declare class Chain implements IStructure {
|
|
950
|
+
getMatcher(): IStructureRunnable;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
declare class Chain_2 implements IStatement {
|
|
954
|
+
getMatcher(): IStatementRunnable;
|
|
955
|
+
}
|
|
956
|
+
|
|
949
957
|
declare class ChangeDocument extends AbstractObject {
|
|
950
958
|
getType(): string;
|
|
951
959
|
getAllowedNaming(): {
|
|
@@ -1939,6 +1947,10 @@ declare class EndCatch implements IStatement {
|
|
|
1939
1947
|
getMatcher(): IStatementRunnable;
|
|
1940
1948
|
}
|
|
1941
1949
|
|
|
1950
|
+
declare class EndChain implements IStatement {
|
|
1951
|
+
getMatcher(): IStatementRunnable;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1942
1954
|
declare class EndClass implements IStatement {
|
|
1943
1955
|
getMatcher(): IStatementRunnable;
|
|
1944
1956
|
}
|
|
@@ -6500,6 +6512,8 @@ declare namespace Statements {
|
|
|
6500
6512
|
DeleteMemory,
|
|
6501
6513
|
Provide_2 as Provide,
|
|
6502
6514
|
EndExec,
|
|
6515
|
+
Chain_2 as Chain,
|
|
6516
|
+
EndChain,
|
|
6503
6517
|
CallSubscreen,
|
|
6504
6518
|
SortDataset,
|
|
6505
6519
|
GetPermissions,
|
|
@@ -6619,6 +6633,7 @@ declare namespace Structures {
|
|
|
6619
6633
|
ClassData,
|
|
6620
6634
|
ClassDefinition,
|
|
6621
6635
|
ClassGlobal,
|
|
6636
|
+
Chain,
|
|
6622
6637
|
ClassImplementation,
|
|
6623
6638
|
Cleanup,
|
|
6624
6639
|
Constants,
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Chain = void 0;
|
|
4
|
+
const combi_1 = require("../combi");
|
|
5
|
+
const version_1 = require("../../../version");
|
|
6
|
+
class Chain {
|
|
7
|
+
getMatcher() {
|
|
8
|
+
return (0, combi_1.verNot)(version_1.Version.Cloud, "CHAIN");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.Chain = Chain;
|
|
12
|
+
//# sourceMappingURL=chain.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EndChain = void 0;
|
|
4
|
+
const combi_1 = require("../combi");
|
|
5
|
+
const version_1 = require("../../../version");
|
|
6
|
+
class EndChain {
|
|
7
|
+
getMatcher() {
|
|
8
|
+
return (0, combi_1.verNot)(version_1.Version.Cloud, "ENDCHAIN");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.EndChain = EndChain;
|
|
12
|
+
//# sourceMappingURL=end_chain.js.map
|
|
@@ -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.
|
|
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
|
}
|
|
@@ -320,6 +320,8 @@ __exportStar(require("./end_test_seam"), exports);
|
|
|
320
320
|
__exportStar(require("./delete_memory"), exports);
|
|
321
321
|
__exportStar(require("./provide"), exports);
|
|
322
322
|
__exportStar(require("./endexec"), exports);
|
|
323
|
+
__exportStar(require("./chain"), exports);
|
|
324
|
+
__exportStar(require("./end_chain"), exports);
|
|
323
325
|
__exportStar(require("./call_subscreen"), exports);
|
|
324
326
|
__exportStar(require("./sort_dataset"), exports);
|
|
325
327
|
__exportStar(require("./get_permissions"), exports);
|
|
@@ -6,7 +6,7 @@ const expressions_1 = require("../expressions");
|
|
|
6
6
|
const version_1 = require("../../../version");
|
|
7
7
|
class Module {
|
|
8
8
|
getMatcher() {
|
|
9
|
-
const ret = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("INPUT", "OUTPUT")));
|
|
9
|
+
const ret = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("INPUT", "OUTPUT", "ON CHAIN-REQUEST")));
|
|
10
10
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
11
11
|
}
|
|
12
12
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Chain = void 0;
|
|
4
|
+
const Statements = require("../../2_statements/statements");
|
|
5
|
+
const _combi_1 = require("./_combi");
|
|
6
|
+
class Chain {
|
|
7
|
+
getMatcher() {
|
|
8
|
+
return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.Chain), (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.Module))), (0, _combi_1.sta)(Statements.EndChain));
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.Chain = Chain;
|
|
12
|
+
//# sourceMappingURL=chain.js.map
|
|
@@ -3,9 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DynproLogic = void 0;
|
|
4
4
|
const Statements = require("../../2_statements/statements");
|
|
5
5
|
const _combi_1 = require("./_combi");
|
|
6
|
+
const chain_1 = require("./chain");
|
|
6
7
|
class DynproLogic {
|
|
7
8
|
getMatcher() {
|
|
8
|
-
const pai = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.CallSubscreen)));
|
|
9
|
+
const pai = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.CallSubscreen), (0, _combi_1.sub)(chain_1.Chain)));
|
|
9
10
|
const pbo = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.CallSubscreen)));
|
|
10
11
|
const pov = (0, _combi_1.star)((0, _combi_1.sta)(Statements.Field));
|
|
11
12
|
return (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessBeforeOutput), pbo, (0, _combi_1.sta)(Statements.ProcessAfterInput), pai, (0, _combi_1.opt)((0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessOnValueRequest), pov)));
|
|
@@ -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