@abaplint/cli 2.106.1 → 2.106.2
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 +6 -8
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -29167,13 +29167,11 @@ class Concatenate {
|
|
|
29167
29167
|
}
|
|
29168
29168
|
}
|
|
29169
29169
|
}
|
|
29170
|
-
|
|
29171
|
-
|
|
29172
|
-
|
|
29173
|
-
|
|
29174
|
-
|
|
29175
|
-
throw new Error("Source type not compatible");
|
|
29176
|
-
}
|
|
29170
|
+
for (const s of node.findDirectExpressions(Expressions.SimpleSource3)) {
|
|
29171
|
+
const type = new source_1.Source().runSyntax(s, scope, filename);
|
|
29172
|
+
const compatible = byteMode ? new _type_utils_1.TypeUtils(scope).isHexLike(type) : new _type_utils_1.TypeUtils(scope).isCharLikeStrict(type);
|
|
29173
|
+
if (compatible === false) {
|
|
29174
|
+
throw new Error("Source type not compatible");
|
|
29177
29175
|
}
|
|
29178
29176
|
}
|
|
29179
29177
|
}
|
|
@@ -51383,7 +51381,7 @@ class Registry {
|
|
|
51383
51381
|
}
|
|
51384
51382
|
static abaplintVersion() {
|
|
51385
51383
|
// magic, see build script "version.sh"
|
|
51386
|
-
return "2.106.
|
|
51384
|
+
return "2.106.2";
|
|
51387
51385
|
}
|
|
51388
51386
|
getDDICReferences() {
|
|
51389
51387
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.106.
|
|
3
|
+
"version": "2.106.2",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.106.
|
|
41
|
+
"@abaplint/core": "^2.106.2",
|
|
42
42
|
"@types/chai": "^4.3.12",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|