@abaplint/cli 2.120.32 → 2.120.33
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/cli.js +9 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -27746,6 +27746,11 @@ class TypeUtils {
|
|
|
27746
27746
|
return false;
|
|
27747
27747
|
}
|
|
27748
27748
|
}
|
|
27749
|
+
else if (source instanceof basic_1.DateType || source instanceof basic_1.TimeType) {
|
|
27750
|
+
if (target instanceof basic_1.CharacterType || target instanceof basic_1.StringType) {
|
|
27751
|
+
return false;
|
|
27752
|
+
}
|
|
27753
|
+
}
|
|
27749
27754
|
else if (source instanceof basic_1.StringType) {
|
|
27750
27755
|
if (target instanceof basic_1.StructureType && this.structureContainsString(target)) {
|
|
27751
27756
|
return false;
|
|
@@ -27807,7 +27812,9 @@ class TypeUtils {
|
|
|
27807
27812
|
}
|
|
27808
27813
|
}
|
|
27809
27814
|
else if (source instanceof basic_1.IntegerType) {
|
|
27810
|
-
if (target instanceof basic_1.StringType
|
|
27815
|
+
if (target instanceof basic_1.StringType
|
|
27816
|
+
|| target instanceof basic_1.DateType
|
|
27817
|
+
|| target instanceof basic_1.CharacterType) {
|
|
27811
27818
|
return false;
|
|
27812
27819
|
}
|
|
27813
27820
|
else if (target instanceof basic_1.Integer8Type || target instanceof basic_1.PackedType) {
|
|
@@ -70053,7 +70060,7 @@ class Registry {
|
|
|
70053
70060
|
}
|
|
70054
70061
|
static abaplintVersion() {
|
|
70055
70062
|
// magic, see build script "version.js"
|
|
70056
|
-
return "2.120.
|
|
70063
|
+
return "2.120.33";
|
|
70057
70064
|
}
|
|
70058
70065
|
getDDICReferences() {
|
|
70059
70066
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.120.
|
|
3
|
+
"version": "2.120.33",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://abaplint.org",
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@abaplint/core": "^2.120.
|
|
42
|
+
"@abaplint/core": "^2.120.33",
|
|
43
43
|
"@types/chai": "^4.3.20",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|
|
45
45
|
"@types/mocha": "^10.0.10",
|