@abaplint/core 2.113.76 → 2.113.77
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 +10 -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/registry.js +1 -1
- package/package.json +1 -1
package/build/abaplint.d.ts
CHANGED
|
@@ -946,6 +946,10 @@ declare class CGenericType extends AbstractType {
|
|
|
946
946
|
toCDS(): string;
|
|
947
947
|
}
|
|
948
948
|
|
|
949
|
+
declare class Chain implements IStatement {
|
|
950
|
+
getMatcher(): IStatementRunnable;
|
|
951
|
+
}
|
|
952
|
+
|
|
949
953
|
declare class ChangeDocument extends AbstractObject {
|
|
950
954
|
getType(): string;
|
|
951
955
|
getAllowedNaming(): {
|
|
@@ -1939,6 +1943,10 @@ declare class EndCatch implements IStatement {
|
|
|
1939
1943
|
getMatcher(): IStatementRunnable;
|
|
1940
1944
|
}
|
|
1941
1945
|
|
|
1946
|
+
declare class EndChain implements IStatement {
|
|
1947
|
+
getMatcher(): IStatementRunnable;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1942
1950
|
declare class EndClass implements IStatement {
|
|
1943
1951
|
getMatcher(): IStatementRunnable;
|
|
1944
1952
|
}
|
|
@@ -6500,6 +6508,8 @@ declare namespace Statements {
|
|
|
6500
6508
|
DeleteMemory,
|
|
6501
6509
|
Provide_2 as Provide,
|
|
6502
6510
|
EndExec,
|
|
6511
|
+
Chain,
|
|
6512
|
+
EndChain,
|
|
6503
6513
|
CallSubscreen,
|
|
6504
6514
|
SortDataset,
|
|
6505
6515
|
GetPermissions,
|
|
@@ -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, "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)));
|
package/build/src/registry.js
CHANGED