@abaplint/cli 2.113.83 → 2.113.84
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 +4 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -53628,7 +53628,7 @@ class Registry {
|
|
|
53628
53628
|
}
|
|
53629
53629
|
static abaplintVersion() {
|
|
53630
53630
|
// magic, see build script "version.sh"
|
|
53631
|
-
return "2.113.
|
|
53631
|
+
return "2.113.84";
|
|
53632
53632
|
}
|
|
53633
53633
|
getDDICReferences() {
|
|
53634
53634
|
return this.ddicReferences;
|
|
@@ -59254,10 +59254,12 @@ Make sure to test the downported code, it might not always be completely correct
|
|
|
59254
59254
|
//////////////////////////////////////////
|
|
59255
59255
|
/** move INTO from after WHERE to after FROM */
|
|
59256
59256
|
downportSQLMoveInto(low, high, lowFile, _highSyntax) {
|
|
59257
|
+
var _a;
|
|
59257
59258
|
if (!(low.get() instanceof _statement_1.Unknown)) {
|
|
59258
59259
|
return undefined;
|
|
59259
59260
|
}
|
|
59260
|
-
|
|
59261
|
+
// note: SQLCond is also used in JOIN(FROM) conditions
|
|
59262
|
+
const where = (_a = high.findFirstExpression(Expressions.Select)) === null || _a === void 0 ? void 0 : _a.findDirectExpression(Expressions.SQLCond);
|
|
59261
59263
|
if (where === undefined) {
|
|
59262
59264
|
return undefined;
|
|
59263
59265
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.84",
|
|
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.113.
|
|
41
|
+
"@abaplint/core": "^2.113.84",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|