@abaplint/transpiler-cli 2.11.48 → 2.11.49
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 +6 -3
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -77877,7 +77877,7 @@ class PopulateTables {
|
|
|
77877
77877
|
}
|
|
77878
77878
|
for (const method of def.getMethodDefinitions().getAll()) {
|
|
77879
77879
|
for (const parameter of method.getParameters().getAll()) {
|
|
77880
|
-
ret.push(`INSERT INTO "seosubco" ("clsname", "cmpname", "sconame") VALUES ('${obj.getName()}', '${method.getName()}', '${parameter.getName()}');`);
|
|
77880
|
+
ret.push(`INSERT INTO "seosubco" ("clsname", "cmpname", "sconame") VALUES ('${obj.getName()}', '${method.getName().toUpperCase()}', '${parameter.getName().toUpperCase()}');`);
|
|
77881
77881
|
}
|
|
77882
77882
|
}
|
|
77883
77883
|
return ret;
|
|
@@ -77907,7 +77907,8 @@ class PopulateTables {
|
|
|
77907
77907
|
pardecltyp = "1";
|
|
77908
77908
|
}
|
|
77909
77909
|
const paroptionl = optionalParameters.includes(parameter.getName()) ? "X" : " ";
|
|
77910
|
-
|
|
77910
|
+
const type = parameter.getType().getQualifiedName()?.toUpperCase() || "";
|
|
77911
|
+
ret.push(`INSERT INTO "seosubcodf" ("clsname", "cmpname", "sconame", "version", "editorder", "pardecltyp", "type", "paroptionl") VALUES ('${obj.getName()}', '${method.getName().toUpperCase()}', '${parameter.getName().toUpperCase()}', 'A', ${editorder}, '${pardecltyp}', '${type}', '${paroptionl}');`);
|
|
77911
77912
|
}
|
|
77912
77913
|
}
|
|
77913
77914
|
return ret;
|
|
@@ -77919,7 +77920,9 @@ class PopulateTables {
|
|
|
77919
77920
|
return [];
|
|
77920
77921
|
}
|
|
77921
77922
|
for (const method of def.getMethodDefinitions().getAll()) {
|
|
77922
|
-
|
|
77923
|
+
for (const parameter of method.getParameters().getAll()) {
|
|
77924
|
+
ret.push(`INSERT INTO "seosubcotx" ("clsname", "cmpname", "sconame", "langu", "descript") VALUES ('${obj.getName()}', '${method.getName().toUpperCase()}', '${parameter.getName().toUpperCase()}', 'E', 'todo');`);
|
|
77925
|
+
}
|
|
77923
77926
|
}
|
|
77924
77927
|
return ret;
|
|
77925
77928
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.49",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.113.185",
|
|
31
|
-
"@abaplint/transpiler": "^2.11.
|
|
31
|
+
"@abaplint/transpiler": "^2.11.49",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.3.0",
|
|
34
34
|
"@types/progress": "^2.0.7",
|