@abaplint/runtime 2.10.7 → 2.10.9
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.
|
@@ -58,6 +58,9 @@ function createData(target, options) {
|
|
|
58
58
|
else if (options.name.trimEnd() === "XSTRING") {
|
|
59
59
|
target.assign(new types_1.XString());
|
|
60
60
|
}
|
|
61
|
+
else if (options.name.trimEnd() === "UTCLONG") {
|
|
62
|
+
target.assign(new types_1.UTCLong());
|
|
63
|
+
}
|
|
61
64
|
else if (options.name.trimEnd() === "I") {
|
|
62
65
|
target.assign(new types_1.Integer());
|
|
63
66
|
}
|
|
@@ -152,6 +155,9 @@ function createData(target, options) {
|
|
|
152
155
|
case "XSTRING":
|
|
153
156
|
target.assign(new types_1.XString());
|
|
154
157
|
break;
|
|
158
|
+
case "UTCLONG":
|
|
159
|
+
target.assign(new types_1.UTCLong());
|
|
160
|
+
break;
|
|
155
161
|
default:
|
|
156
162
|
// @ts-ignore
|
|
157
163
|
if (abap.DDIC[options.typeName.trimEnd()]) {
|