@abaplint/core 2.102.58 → 2.102.60
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 +221 -1
- package/build/src/abap/5_syntax/expressions/select.js +4 -0
- package/build/src/abap/5_syntax/expressions/sql_order_by.js +15 -0
- package/build/src/abap/types/interface_definition.js +3 -0
- package/build/src/objects/index.js +22 -0
- package/build/src/objects/rename/rename_message_class.js +40 -0
- package/build/src/objects/rename/renamer.js +3 -0
- package/build/src/objects/zn01.js +21 -0
- package/build/src/objects/zn02.js +21 -0
- package/build/src/objects/zn03.js +21 -0
- package/build/src/objects/zn04.js +21 -0
- package/build/src/objects/zn05.js +21 -0
- package/build/src/objects/zn06.js +21 -0
- package/build/src/objects/zn07.js +21 -0
- package/build/src/objects/zn08.js +21 -0
- package/build/src/objects/zn09.js +21 -0
- package/build/src/objects/zn10.js +21 -0
- package/build/src/objects/zn11.js +21 -0
- package/build/src/objects/zn12.js +21 -0
- package/build/src/objects/zn13.js +21 -0
- package/build/src/objects/zn14.js +21 -0
- package/build/src/objects/zn15.js +21 -0
- package/build/src/objects/zn16.js +21 -0
- package/build/src/objects/zn17.js +21 -0
- package/build/src/objects/zn18.js +21 -0
- package/build/src/objects/zn19.js +21 -0
- package/build/src/objects/zn20.js +21 -0
- package/build/src/objects/zn21.js +21 -0
- package/build/src/objects/zn22.js +21 -0
- package/build/src/registry.js +1 -1
- package/package.json +5 -5
package/build/abaplint.d.ts
CHANGED
|
@@ -4454,7 +4454,29 @@ declare namespace Objects {
|
|
|
4454
4454
|
WebDynproApplication,
|
|
4455
4455
|
WebDynproComponentConfiguration,
|
|
4456
4456
|
WebDynproComponent,
|
|
4457
|
-
WebMIME
|
|
4457
|
+
WebMIME,
|
|
4458
|
+
ZN01,
|
|
4459
|
+
ZN02,
|
|
4460
|
+
ZN03,
|
|
4461
|
+
ZN04,
|
|
4462
|
+
ZN05,
|
|
4463
|
+
ZN06,
|
|
4464
|
+
ZN07,
|
|
4465
|
+
ZN08,
|
|
4466
|
+
ZN09,
|
|
4467
|
+
ZN10,
|
|
4468
|
+
ZN11,
|
|
4469
|
+
ZN12,
|
|
4470
|
+
ZN13,
|
|
4471
|
+
ZN14,
|
|
4472
|
+
ZN15,
|
|
4473
|
+
ZN16,
|
|
4474
|
+
ZN17,
|
|
4475
|
+
ZN18,
|
|
4476
|
+
ZN19,
|
|
4477
|
+
ZN20,
|
|
4478
|
+
ZN21,
|
|
4479
|
+
ZN0122
|
|
4458
4480
|
}
|
|
4459
4481
|
}
|
|
4460
4482
|
export { Objects }
|
|
@@ -6877,4 +6899,202 @@ declare class XStringType extends AbstractType {
|
|
|
6877
6899
|
toCDS(): string;
|
|
6878
6900
|
}
|
|
6879
6901
|
|
|
6902
|
+
declare class ZN01 extends AbstractObject {
|
|
6903
|
+
getType(): string;
|
|
6904
|
+
getAllowedNaming(): {
|
|
6905
|
+
maxLength: number;
|
|
6906
|
+
allowNamespace: boolean;
|
|
6907
|
+
};
|
|
6908
|
+
getDescription(): string | undefined;
|
|
6909
|
+
}
|
|
6910
|
+
|
|
6911
|
+
declare class ZN0122 extends AbstractObject {
|
|
6912
|
+
getType(): string;
|
|
6913
|
+
getAllowedNaming(): {
|
|
6914
|
+
maxLength: number;
|
|
6915
|
+
allowNamespace: boolean;
|
|
6916
|
+
};
|
|
6917
|
+
getDescription(): string | undefined;
|
|
6918
|
+
}
|
|
6919
|
+
|
|
6920
|
+
declare class ZN02 extends AbstractObject {
|
|
6921
|
+
getType(): string;
|
|
6922
|
+
getAllowedNaming(): {
|
|
6923
|
+
maxLength: number;
|
|
6924
|
+
allowNamespace: boolean;
|
|
6925
|
+
};
|
|
6926
|
+
getDescription(): string | undefined;
|
|
6927
|
+
}
|
|
6928
|
+
|
|
6929
|
+
declare class ZN03 extends AbstractObject {
|
|
6930
|
+
getType(): string;
|
|
6931
|
+
getAllowedNaming(): {
|
|
6932
|
+
maxLength: number;
|
|
6933
|
+
allowNamespace: boolean;
|
|
6934
|
+
};
|
|
6935
|
+
getDescription(): string | undefined;
|
|
6936
|
+
}
|
|
6937
|
+
|
|
6938
|
+
declare class ZN04 extends AbstractObject {
|
|
6939
|
+
getType(): string;
|
|
6940
|
+
getAllowedNaming(): {
|
|
6941
|
+
maxLength: number;
|
|
6942
|
+
allowNamespace: boolean;
|
|
6943
|
+
};
|
|
6944
|
+
getDescription(): string | undefined;
|
|
6945
|
+
}
|
|
6946
|
+
|
|
6947
|
+
declare class ZN05 extends AbstractObject {
|
|
6948
|
+
getType(): string;
|
|
6949
|
+
getAllowedNaming(): {
|
|
6950
|
+
maxLength: number;
|
|
6951
|
+
allowNamespace: boolean;
|
|
6952
|
+
};
|
|
6953
|
+
getDescription(): string | undefined;
|
|
6954
|
+
}
|
|
6955
|
+
|
|
6956
|
+
declare class ZN06 extends AbstractObject {
|
|
6957
|
+
getType(): string;
|
|
6958
|
+
getAllowedNaming(): {
|
|
6959
|
+
maxLength: number;
|
|
6960
|
+
allowNamespace: boolean;
|
|
6961
|
+
};
|
|
6962
|
+
getDescription(): string | undefined;
|
|
6963
|
+
}
|
|
6964
|
+
|
|
6965
|
+
declare class ZN07 extends AbstractObject {
|
|
6966
|
+
getType(): string;
|
|
6967
|
+
getAllowedNaming(): {
|
|
6968
|
+
maxLength: number;
|
|
6969
|
+
allowNamespace: boolean;
|
|
6970
|
+
};
|
|
6971
|
+
getDescription(): string | undefined;
|
|
6972
|
+
}
|
|
6973
|
+
|
|
6974
|
+
declare class ZN08 extends AbstractObject {
|
|
6975
|
+
getType(): string;
|
|
6976
|
+
getAllowedNaming(): {
|
|
6977
|
+
maxLength: number;
|
|
6978
|
+
allowNamespace: boolean;
|
|
6979
|
+
};
|
|
6980
|
+
getDescription(): string | undefined;
|
|
6981
|
+
}
|
|
6982
|
+
|
|
6983
|
+
declare class ZN09 extends AbstractObject {
|
|
6984
|
+
getType(): string;
|
|
6985
|
+
getAllowedNaming(): {
|
|
6986
|
+
maxLength: number;
|
|
6987
|
+
allowNamespace: boolean;
|
|
6988
|
+
};
|
|
6989
|
+
getDescription(): string | undefined;
|
|
6990
|
+
}
|
|
6991
|
+
|
|
6992
|
+
declare class ZN10 extends AbstractObject {
|
|
6993
|
+
getType(): string;
|
|
6994
|
+
getAllowedNaming(): {
|
|
6995
|
+
maxLength: number;
|
|
6996
|
+
allowNamespace: boolean;
|
|
6997
|
+
};
|
|
6998
|
+
getDescription(): string | undefined;
|
|
6999
|
+
}
|
|
7000
|
+
|
|
7001
|
+
declare class ZN11 extends AbstractObject {
|
|
7002
|
+
getType(): string;
|
|
7003
|
+
getAllowedNaming(): {
|
|
7004
|
+
maxLength: number;
|
|
7005
|
+
allowNamespace: boolean;
|
|
7006
|
+
};
|
|
7007
|
+
getDescription(): string | undefined;
|
|
7008
|
+
}
|
|
7009
|
+
|
|
7010
|
+
declare class ZN12 extends AbstractObject {
|
|
7011
|
+
getType(): string;
|
|
7012
|
+
getAllowedNaming(): {
|
|
7013
|
+
maxLength: number;
|
|
7014
|
+
allowNamespace: boolean;
|
|
7015
|
+
};
|
|
7016
|
+
getDescription(): string | undefined;
|
|
7017
|
+
}
|
|
7018
|
+
|
|
7019
|
+
declare class ZN13 extends AbstractObject {
|
|
7020
|
+
getType(): string;
|
|
7021
|
+
getAllowedNaming(): {
|
|
7022
|
+
maxLength: number;
|
|
7023
|
+
allowNamespace: boolean;
|
|
7024
|
+
};
|
|
7025
|
+
getDescription(): string | undefined;
|
|
7026
|
+
}
|
|
7027
|
+
|
|
7028
|
+
declare class ZN14 extends AbstractObject {
|
|
7029
|
+
getType(): string;
|
|
7030
|
+
getAllowedNaming(): {
|
|
7031
|
+
maxLength: number;
|
|
7032
|
+
allowNamespace: boolean;
|
|
7033
|
+
};
|
|
7034
|
+
getDescription(): string | undefined;
|
|
7035
|
+
}
|
|
7036
|
+
|
|
7037
|
+
declare class ZN15 extends AbstractObject {
|
|
7038
|
+
getType(): string;
|
|
7039
|
+
getAllowedNaming(): {
|
|
7040
|
+
maxLength: number;
|
|
7041
|
+
allowNamespace: boolean;
|
|
7042
|
+
};
|
|
7043
|
+
getDescription(): string | undefined;
|
|
7044
|
+
}
|
|
7045
|
+
|
|
7046
|
+
declare class ZN16 extends AbstractObject {
|
|
7047
|
+
getType(): string;
|
|
7048
|
+
getAllowedNaming(): {
|
|
7049
|
+
maxLength: number;
|
|
7050
|
+
allowNamespace: boolean;
|
|
7051
|
+
};
|
|
7052
|
+
getDescription(): string | undefined;
|
|
7053
|
+
}
|
|
7054
|
+
|
|
7055
|
+
declare class ZN17 extends AbstractObject {
|
|
7056
|
+
getType(): string;
|
|
7057
|
+
getAllowedNaming(): {
|
|
7058
|
+
maxLength: number;
|
|
7059
|
+
allowNamespace: boolean;
|
|
7060
|
+
};
|
|
7061
|
+
getDescription(): string | undefined;
|
|
7062
|
+
}
|
|
7063
|
+
|
|
7064
|
+
declare class ZN18 extends AbstractObject {
|
|
7065
|
+
getType(): string;
|
|
7066
|
+
getAllowedNaming(): {
|
|
7067
|
+
maxLength: number;
|
|
7068
|
+
allowNamespace: boolean;
|
|
7069
|
+
};
|
|
7070
|
+
getDescription(): string | undefined;
|
|
7071
|
+
}
|
|
7072
|
+
|
|
7073
|
+
declare class ZN19 extends AbstractObject {
|
|
7074
|
+
getType(): string;
|
|
7075
|
+
getAllowedNaming(): {
|
|
7076
|
+
maxLength: number;
|
|
7077
|
+
allowNamespace: boolean;
|
|
7078
|
+
};
|
|
7079
|
+
getDescription(): string | undefined;
|
|
7080
|
+
}
|
|
7081
|
+
|
|
7082
|
+
declare class ZN20 extends AbstractObject {
|
|
7083
|
+
getType(): string;
|
|
7084
|
+
getAllowedNaming(): {
|
|
7085
|
+
maxLength: number;
|
|
7086
|
+
allowNamespace: boolean;
|
|
7087
|
+
};
|
|
7088
|
+
getDescription(): string | undefined;
|
|
7089
|
+
}
|
|
7090
|
+
|
|
7091
|
+
declare class ZN21 extends AbstractObject {
|
|
7092
|
+
getType(): string;
|
|
7093
|
+
getAllowedNaming(): {
|
|
7094
|
+
maxLength: number;
|
|
7095
|
+
allowNamespace: boolean;
|
|
7096
|
+
};
|
|
7097
|
+
getDescription(): string | undefined;
|
|
7098
|
+
}
|
|
7099
|
+
|
|
6880
7100
|
export { }
|
|
@@ -10,6 +10,7 @@ const sql_for_all_entries_1 = require("./sql_for_all_entries");
|
|
|
10
10
|
const _scope_type_1 = require("../_scope_type");
|
|
11
11
|
const sql_source_1 = require("./sql_source");
|
|
12
12
|
const sql_compare_1 = require("./sql_compare");
|
|
13
|
+
const sql_order_by_1 = require("./sql_order_by");
|
|
13
14
|
const isSimple = /^\w+$/;
|
|
14
15
|
class Select {
|
|
15
16
|
runSyntax(node, scope, filename, skipImplicitInto = false) {
|
|
@@ -63,6 +64,9 @@ class Select {
|
|
|
63
64
|
for (const s of node.findAllExpressions(Expressions.SQLCompare)) {
|
|
64
65
|
new sql_compare_1.SQLCompare().runSyntax(s, scope, filename, dbSources);
|
|
65
66
|
}
|
|
67
|
+
for (const s of node.findDirectExpressions(Expressions.SQLOrderBy)) {
|
|
68
|
+
new sql_order_by_1.SQLOrderBy().runSyntax(s, scope, filename);
|
|
69
|
+
}
|
|
66
70
|
if (scope.getType() === _scope_type_1.ScopeType.OpenSQL) {
|
|
67
71
|
scope.pop(node.getLastToken().getEnd());
|
|
68
72
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SQLOrderBy = void 0;
|
|
4
|
+
const Expressions = require("../../2_statements/expressions");
|
|
5
|
+
const dynamic_1 = require("./dynamic");
|
|
6
|
+
class SQLOrderBy {
|
|
7
|
+
runSyntax(node, scope, filename) {
|
|
8
|
+
const dyn = node.findDirectExpression(Expressions.Dynamic);
|
|
9
|
+
if (dyn) {
|
|
10
|
+
new dynamic_1.Dynamic().runSyntax(dyn, scope, filename);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.SQLOrderBy = SQLOrderBy;
|
|
15
|
+
//# sourceMappingURL=sql_order_by.js.map
|
|
@@ -73,6 +73,9 @@ class InterfaceDefinition extends _identifier_1.Identifier {
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
this.methodDefinitions = new method_definitions_1.MethodDefinitions(this.node, this.filename, scope);
|
|
76
|
+
if (this.methodDefinitions.getByName("CONSTRUCTOR") !== undefined) {
|
|
77
|
+
throw new Error("Interfaces cannot have constructor methods");
|
|
78
|
+
}
|
|
76
79
|
const events = this.node.findAllStatements(Statements.Events);
|
|
77
80
|
for (const e of events) {
|
|
78
81
|
this.events.push(new event_definition_1.EventDefinition(e, visibility_1.Visibility.Public, this.filename, scope));
|
|
@@ -134,4 +134,26 @@ __exportStar(require("./web_dynpro_application"), exports);
|
|
|
134
134
|
__exportStar(require("./web_dynpro_component_configuration"), exports);
|
|
135
135
|
__exportStar(require("./web_dynpro_component"), exports);
|
|
136
136
|
__exportStar(require("./web_mime"), exports);
|
|
137
|
+
__exportStar(require("./zn01"), exports);
|
|
138
|
+
__exportStar(require("./zn02"), exports);
|
|
139
|
+
__exportStar(require("./zn03"), exports);
|
|
140
|
+
__exportStar(require("./zn04"), exports);
|
|
141
|
+
__exportStar(require("./zn05"), exports);
|
|
142
|
+
__exportStar(require("./zn06"), exports);
|
|
143
|
+
__exportStar(require("./zn07"), exports);
|
|
144
|
+
__exportStar(require("./zn08"), exports);
|
|
145
|
+
__exportStar(require("./zn09"), exports);
|
|
146
|
+
__exportStar(require("./zn10"), exports);
|
|
147
|
+
__exportStar(require("./zn11"), exports);
|
|
148
|
+
__exportStar(require("./zn12"), exports);
|
|
149
|
+
__exportStar(require("./zn13"), exports);
|
|
150
|
+
__exportStar(require("./zn14"), exports);
|
|
151
|
+
__exportStar(require("./zn15"), exports);
|
|
152
|
+
__exportStar(require("./zn16"), exports);
|
|
153
|
+
__exportStar(require("./zn17"), exports);
|
|
154
|
+
__exportStar(require("./zn18"), exports);
|
|
155
|
+
__exportStar(require("./zn19"), exports);
|
|
156
|
+
__exportStar(require("./zn20"), exports);
|
|
157
|
+
__exportStar(require("./zn21"), exports);
|
|
158
|
+
__exportStar(require("./zn22"), exports);
|
|
137
159
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RenameMessageClass = void 0;
|
|
4
|
+
const vscode_languageserver_types_1 = require("vscode-languageserver-types");
|
|
5
|
+
const __1 = require("..");
|
|
6
|
+
const renamer_helper_1 = require("./renamer_helper");
|
|
7
|
+
class RenameMessageClass {
|
|
8
|
+
constructor(reg) {
|
|
9
|
+
this.reg = reg;
|
|
10
|
+
}
|
|
11
|
+
buildEdits(obj, oldName, newName) {
|
|
12
|
+
if (!(obj instanceof __1.MessageClass)) {
|
|
13
|
+
throw new Error("RenameMessageClass, not a message class");
|
|
14
|
+
}
|
|
15
|
+
let changes = [];
|
|
16
|
+
const helper = new renamer_helper_1.RenamerHelper(this.reg);
|
|
17
|
+
changes = changes.concat(helper.buildXMLFileEdits(obj, "ARBGB", oldName, newName));
|
|
18
|
+
changes = changes.concat(helper.renameFiles(obj, oldName, newName));
|
|
19
|
+
for (const message of obj.getMessages()) {
|
|
20
|
+
for (const ref of this.reg.getMSAGReferences().listByMessage(obj.getName(), message.getNumber())) {
|
|
21
|
+
const file = this.reg.getFileByName(ref.filename);
|
|
22
|
+
if (file === undefined) {
|
|
23
|
+
continue;
|
|
24
|
+
}
|
|
25
|
+
const rows = file.getRawRows();
|
|
26
|
+
const i = ref.token.getRow() - 1;
|
|
27
|
+
const index = rows[i].indexOf(oldName.toLowerCase());
|
|
28
|
+
if (index >= 0) {
|
|
29
|
+
const range = vscode_languageserver_types_1.Range.create(i, index, i, index + oldName.length);
|
|
30
|
+
changes.push(vscode_languageserver_types_1.TextDocumentEdit.create({ uri: file.getFilename(), version: 1 }, [vscode_languageserver_types_1.TextEdit.replace(range, newName.toLowerCase())]));
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
documentChanges: changes,
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.RenameMessageClass = RenameMessageClass;
|
|
40
|
+
//# sourceMappingURL=rename_message_class.js.map
|
|
@@ -9,6 +9,7 @@ const rename_global_class_1 = require("./rename_global_class");
|
|
|
9
9
|
const rename_global_interface_1 = require("./rename_global_interface");
|
|
10
10
|
const rename_table_1 = require("./rename_table");
|
|
11
11
|
const rename_table_type_1 = require("./rename_table_type");
|
|
12
|
+
const rename_message_class_1 = require("./rename_message_class");
|
|
12
13
|
class Renamer {
|
|
13
14
|
constructor(reg) {
|
|
14
15
|
this.reg = reg;
|
|
@@ -56,6 +57,8 @@ class Renamer {
|
|
|
56
57
|
return new rename_table_type_1.RenameTableType(this.reg);
|
|
57
58
|
case "INTF":
|
|
58
59
|
return new rename_global_interface_1.RenameGlobalInterface(this.reg);
|
|
60
|
+
case "MSAG":
|
|
61
|
+
return new rename_message_class_1.RenameMessageClass(this.reg);
|
|
59
62
|
default:
|
|
60
63
|
throw new Error("Renaming of " + type + " not yet supported");
|
|
61
64
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN01 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN01 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN01";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN01 = ZN01;
|
|
21
|
+
//# sourceMappingURL=zn01.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN02 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN02 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN02";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN02 = ZN02;
|
|
21
|
+
//# sourceMappingURL=zn02.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN03 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN03 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN03";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN03 = ZN03;
|
|
21
|
+
//# sourceMappingURL=zn03.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN04 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN04 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN04";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN04 = ZN04;
|
|
21
|
+
//# sourceMappingURL=zn04.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN05 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN05 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN05";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN05 = ZN05;
|
|
21
|
+
//# sourceMappingURL=zn05.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN06 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN06 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN06";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN06 = ZN06;
|
|
21
|
+
//# sourceMappingURL=zn06.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN07 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN07 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN07";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN07 = ZN07;
|
|
21
|
+
//# sourceMappingURL=zn07.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN08 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN08 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN08";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN08 = ZN08;
|
|
21
|
+
//# sourceMappingURL=zn08.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN09 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN09 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN09";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN09 = ZN09;
|
|
21
|
+
//# sourceMappingURL=zn09.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN10 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN10 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN10";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN10 = ZN10;
|
|
21
|
+
//# sourceMappingURL=zn10.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN11 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN11 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN11";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN11 = ZN11;
|
|
21
|
+
//# sourceMappingURL=zn11.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN12 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN12 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN12";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN12 = ZN12;
|
|
21
|
+
//# sourceMappingURL=zn12.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN13 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN13 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN13";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN13 = ZN13;
|
|
21
|
+
//# sourceMappingURL=zn13.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN14 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN14 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN14";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN14 = ZN14;
|
|
21
|
+
//# sourceMappingURL=zn14.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN15 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN15 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN15";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN15 = ZN15;
|
|
21
|
+
//# sourceMappingURL=zn15.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN16 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN16 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN16";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN16 = ZN16;
|
|
21
|
+
//# sourceMappingURL=zn16.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN17 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN17 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN17";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN17 = ZN17;
|
|
21
|
+
//# sourceMappingURL=zn17.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN18 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN18 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN18";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN18 = ZN18;
|
|
21
|
+
//# sourceMappingURL=zn18.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN19 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN19 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN19";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN19 = ZN19;
|
|
21
|
+
//# sourceMappingURL=zn19.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN20 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN20 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN20";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN20 = ZN20;
|
|
21
|
+
//# sourceMappingURL=zn20.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN21 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN21 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN21";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN21 = ZN21;
|
|
21
|
+
//# sourceMappingURL=zn21.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ZN0122 = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ZN0122 extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN22";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ZN0122 = ZN0122;
|
|
21
|
+
//# sourceMappingURL=zn22.js.map
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.60",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -51,15 +51,15 @@
|
|
|
51
51
|
"homepage": "https://abaplint.org",
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@microsoft/api-extractor": "^7.38.0",
|
|
54
|
-
"@types/chai": "^4.3.
|
|
55
|
-
"@types/mocha": "^10.0.
|
|
56
|
-
"@types/node": "^20.8.
|
|
54
|
+
"@types/chai": "^4.3.9",
|
|
55
|
+
"@types/mocha": "^10.0.3",
|
|
56
|
+
"@types/node": "^20.8.7",
|
|
57
57
|
"chai": "^4.3.10",
|
|
58
58
|
"eslint": "^8.51.0",
|
|
59
59
|
"mocha": "^10.2.0",
|
|
60
60
|
"c8": "^8.0.1",
|
|
61
61
|
"source-map-support": "^0.5.21",
|
|
62
|
-
"ts-json-schema-generator": "^1.
|
|
62
|
+
"ts-json-schema-generator": "^1.4.0",
|
|
63
63
|
"typescript": "^5.2.2"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|