@abaplint/core 2.91.37 → 2.91.38
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/5_syntax/expressions/method_call_param.js +7 -2
- package/build/src/objects/api_release_state.js +21 -0
- package/build/src/objects/index.js +1 -0
- package/build/src/registry.js +1 -1
- package/build/src/rules/rfc_error_handling.js +1 -1
- package/package.json +3 -3
package/build/abaplint.d.ts
CHANGED
|
@@ -150,6 +150,15 @@ declare class AnyType extends AbstractType {
|
|
|
150
150
|
toCDS(): string;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
+
declare class APIReleaseState extends AbstractObject {
|
|
154
|
+
getType(): string;
|
|
155
|
+
getAllowedNaming(): {
|
|
156
|
+
maxLength: number;
|
|
157
|
+
allowNamespace: boolean;
|
|
158
|
+
};
|
|
159
|
+
getDescription(): string | undefined;
|
|
160
|
+
}
|
|
161
|
+
|
|
153
162
|
declare class Append implements IStatement {
|
|
154
163
|
getMatcher(): IStatementRunnable;
|
|
155
164
|
}
|
|
@@ -3958,6 +3967,7 @@ declare class ObjectReferenceType extends AbstractType {
|
|
|
3958
3967
|
declare namespace Objects {
|
|
3959
3968
|
export {
|
|
3960
3969
|
ActivationVariant,
|
|
3970
|
+
APIReleaseState,
|
|
3961
3971
|
AssignmentServiceToAuthorizationGroup,
|
|
3962
3972
|
AuthorizationCheckField,
|
|
3963
3973
|
AuthorizationGroup,
|
|
@@ -26,7 +26,9 @@ class MethodCallParam {
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
else if (child instanceof nodes_1.ExpressionNode
|
|
29
|
+
else if (child instanceof nodes_1.ExpressionNode
|
|
30
|
+
&& (child.get() instanceof Expressions.Source
|
|
31
|
+
|| child.get() instanceof Expressions.ConstantString)) {
|
|
30
32
|
if (!(method instanceof basic_1.VoidType) && method.getParameters().getImporting().length === 0) {
|
|
31
33
|
throw new Error("Method \"" + method.getName() + "\" has no importing parameters");
|
|
32
34
|
}
|
|
@@ -46,7 +48,10 @@ class MethodCallParam {
|
|
|
46
48
|
else {
|
|
47
49
|
targetType = method;
|
|
48
50
|
}
|
|
49
|
-
|
|
51
|
+
let sourceType = new basic_1.StringType();
|
|
52
|
+
if (child.get() instanceof Expressions.Source) {
|
|
53
|
+
sourceType = new source_1.Source().runSyntax(child, scope, filename, targetType);
|
|
54
|
+
}
|
|
50
55
|
if (sourceType === undefined) {
|
|
51
56
|
throw new Error("No source type determined, method source");
|
|
52
57
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.APIReleaseState = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class APIReleaseState extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "APIS";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 200,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.APIReleaseState = APIReleaseState;
|
|
21
|
+
//# sourceMappingURL=api_release_state.js.map
|
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./activation_variant"), exports);
|
|
18
|
+
__exportStar(require("./api_release_state"), exports);
|
|
18
19
|
__exportStar(require("./assignment_service_to_authorization_group"), exports);
|
|
19
20
|
__exportStar(require("./authorization_check_field"), exports);
|
|
20
21
|
__exportStar(require("./authorization_group"), exports);
|
package/build/src/registry.js
CHANGED
|
@@ -36,7 +36,7 @@ CALL FUNCTION 'ZRFC'
|
|
|
36
36
|
};
|
|
37
37
|
}
|
|
38
38
|
getMessage() {
|
|
39
|
-
return "RFC error handling: At least one unhandled exception from SYSTEM_FAILURE, COMMUNICATION_FAILURE, RESOURCE_FAILURE
|
|
39
|
+
return "RFC error handling: At least one unhandled exception from SYSTEM_FAILURE, COMMUNICATION_FAILURE, RESOURCE_FAILURE";
|
|
40
40
|
}
|
|
41
41
|
getConfig() {
|
|
42
42
|
return this.conf;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.91.
|
|
3
|
+
"version": "2.91.38",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://abaplint.org",
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "^7.29.
|
|
48
|
+
"@microsoft/api-extractor": "^7.29.5",
|
|
49
49
|
"@types/chai": "^4.3.3",
|
|
50
50
|
"@types/mocha": "^9.1.1",
|
|
51
|
-
"@types/node": "^18.7.
|
|
51
|
+
"@types/node": "^18.7.12",
|
|
52
52
|
"chai": "^4.3.6",
|
|
53
53
|
"eslint": "^8.22.0",
|
|
54
54
|
"mocha": "^10.0.0",
|