@abaplint/transpiler-cli 2.7.84 → 2.7.85
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/bundle.js +5 -3
- package/package.json +3 -3
package/build/bundle.js
CHANGED
|
@@ -28395,7 +28395,8 @@ class InsertInternal {
|
|
|
28395
28395
|
if (t) {
|
|
28396
28396
|
targetType = new target_1.Target().runSyntax(t, scope, filename);
|
|
28397
28397
|
}
|
|
28398
|
-
if (targetType instanceof basic_1.TableType
|
|
28398
|
+
if (targetType instanceof basic_1.TableType
|
|
28399
|
+
&& node.findDirectTokenByText("LINES") === undefined) {
|
|
28399
28400
|
targetType = targetType.getRowType();
|
|
28400
28401
|
}
|
|
28401
28402
|
let source = node.findDirectExpression(Expressions.SimpleSource4);
|
|
@@ -28413,7 +28414,8 @@ class InsertInternal {
|
|
|
28413
28414
|
new fstarget_1.FSTarget().runSyntax(afterAssigning, scope, filename, sourceType);
|
|
28414
28415
|
}
|
|
28415
28416
|
}
|
|
28416
|
-
if (
|
|
28417
|
+
if (afterAssigning === undefined
|
|
28418
|
+
&& new _type_utils_1.TypeUtils(scope).isAssignableStrict(sourceType, targetType) === false) {
|
|
28417
28419
|
throw new Error("Types not compatible");
|
|
28418
28420
|
}
|
|
28419
28421
|
const afterInto = node.findExpressionAfterToken("INTO");
|
|
@@ -47819,7 +47821,7 @@ class Registry {
|
|
|
47819
47821
|
}
|
|
47820
47822
|
static abaplintVersion() {
|
|
47821
47823
|
// magic, see build script "version.sh"
|
|
47822
|
-
return "2.102.
|
|
47824
|
+
return "2.102.33";
|
|
47823
47825
|
}
|
|
47824
47826
|
getDDICReferences() {
|
|
47825
47827
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.85",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"author": "abaplint",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@abaplint/transpiler": "^2.7.
|
|
29
|
+
"@abaplint/transpiler": "^2.7.85",
|
|
30
30
|
"@types/glob": "^7.2.0",
|
|
31
31
|
"glob": "=7.2.0",
|
|
32
32
|
"@types/progress": "^2.0.5",
|
|
33
33
|
"@types/node": "^20.5.7",
|
|
34
|
-
"@abaplint/core": "^2.102.
|
|
34
|
+
"@abaplint/core": "^2.102.33",
|
|
35
35
|
"progress": "^2.0.3",
|
|
36
36
|
"webpack": "^5.88.2",
|
|
37
37
|
"webpack-cli": "^5.1.4",
|