@abaplint/runtime 2.13.6 → 2.13.7
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.
|
@@ -149,6 +149,9 @@ function createData(target, options) {
|
|
|
149
149
|
case "UTCLONG":
|
|
150
150
|
target.assign(new types_1.UTCLong());
|
|
151
151
|
break;
|
|
152
|
+
case "DECFLOAT34":
|
|
153
|
+
target.assign(new types_1.DecFloat34());
|
|
154
|
+
break;
|
|
152
155
|
default:
|
|
153
156
|
if (abap.DDIC[options.typeName.trimEnd()]) {
|
|
154
157
|
target.assign(abap.DDIC[options.typeName.trimEnd()].type().clone());
|
|
@@ -7,7 +7,8 @@ import { Structure } from "./structure";
|
|
|
7
7
|
import { Float } from "./float";
|
|
8
8
|
import { Hex } from "./hex";
|
|
9
9
|
import { Integer8 } from "./integer8";
|
|
10
|
-
|
|
10
|
+
import { DecFloat34 } from "./decfloat34";
|
|
11
|
+
type PointerType = INumeric | Table | ICharacter | ABAPObject | Integer8 | undefined | Structure | Float | DecFloat34;
|
|
11
12
|
export declare class DataReference {
|
|
12
13
|
private pointer;
|
|
13
14
|
private readonly type;
|
|
@@ -22,7 +23,7 @@ export declare class DataReference {
|
|
|
22
23
|
get(): any;
|
|
23
24
|
array(): any;
|
|
24
25
|
getArrayLength(): any;
|
|
25
|
-
set(value: any): void | Table | Structure | ABAPObject | Float | Integer8 | this;
|
|
26
|
+
set(value: any): void | Table | Structure | ABAPObject | Float | Integer8 | this | DecFloat34;
|
|
26
27
|
getOffset(input: {
|
|
27
28
|
offset?: number | INumeric | Hex;
|
|
28
29
|
length?: number | INumeric | Hex;
|
|
@@ -18,7 +18,7 @@ export declare class FieldSymbol {
|
|
|
18
18
|
unassign(): void;
|
|
19
19
|
isAssigned(): boolean;
|
|
20
20
|
getPointer(): any;
|
|
21
|
-
dereference(): INumeric | Table | ICharacter | Structure | ABAPObject | Float | import("./integer8").Integer8 | undefined;
|
|
21
|
+
dereference(): INumeric | Table | ICharacter | Structure | ABAPObject | Float | import("./integer8").Integer8 | import("./decfloat34").DecFloat34 | undefined;
|
|
22
22
|
clear(): void | Structure | undefined;
|
|
23
23
|
get(): any;
|
|
24
24
|
appendInitial(): import("./table").TableRowType | undefined;
|