@abaplint/transpiler 2.11.22 → 2.11.23
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/src/traversal.js +8 -0
- package/package.json +1 -1
package/build/src/traversal.js
CHANGED
|
@@ -621,6 +621,14 @@ this.INTERNAL_ID = abap.internalIdCounter++;\n`;
|
|
|
621
621
|
return abaplint.BasicTypes.StringType.get();
|
|
622
622
|
case "xstring":
|
|
623
623
|
return abaplint.BasicTypes.XStringType.get();
|
|
624
|
+
case "decfloat16":
|
|
625
|
+
return new abaplint.BasicTypes.DecFloat16Type();
|
|
626
|
+
case "decfloat34":
|
|
627
|
+
return new abaplint.BasicTypes.DecFloat34Type();
|
|
628
|
+
case "utclong":
|
|
629
|
+
return new abaplint.BasicTypes.UTCLongType();
|
|
630
|
+
case "int8":
|
|
631
|
+
return new abaplint.BasicTypes.Integer8Type();
|
|
624
632
|
case "d":
|
|
625
633
|
return new abaplint.BasicTypes.DateType();
|
|
626
634
|
case "t":
|