@abaplint/runtime 2.6.26 → 2.6.28
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.
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
export declare class ABAPObject {
|
|
2
2
|
private value;
|
|
3
3
|
private readonly qualifiedName;
|
|
4
|
+
private readonly RTTIName;
|
|
4
5
|
constructor(input?: {
|
|
5
6
|
qualifiedName?: string;
|
|
7
|
+
RTTIName?: string;
|
|
6
8
|
});
|
|
7
9
|
get(): any;
|
|
8
10
|
clear(): void;
|
|
9
11
|
getQualifiedName(): string | undefined;
|
|
12
|
+
getRTTIName(): string | undefined;
|
|
10
13
|
set(value: ABAPObject | any): this;
|
|
11
14
|
}
|
|
@@ -5,6 +5,7 @@ const field_symbol_1 = require("./field_symbol");
|
|
|
5
5
|
class ABAPObject {
|
|
6
6
|
constructor(input) {
|
|
7
7
|
this.qualifiedName = input === null || input === void 0 ? void 0 : input.qualifiedName;
|
|
8
|
+
this.RTTIName = input === null || input === void 0 ? void 0 : input.RTTIName;
|
|
8
9
|
this.clear();
|
|
9
10
|
}
|
|
10
11
|
get() {
|
|
@@ -16,6 +17,9 @@ class ABAPObject {
|
|
|
16
17
|
getQualifiedName() {
|
|
17
18
|
return this.qualifiedName;
|
|
18
19
|
}
|
|
20
|
+
getRTTIName() {
|
|
21
|
+
return this.RTTIName;
|
|
22
|
+
}
|
|
19
23
|
set(value) {
|
|
20
24
|
if (value instanceof ABAPObject) {
|
|
21
25
|
this.value = value.get();
|