@abaplint/cli 2.102.62 → 2.102.63
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 +30 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -5354,6 +5354,7 @@ __exportStar(__webpack_require__(/*! ./sql_order_by */ "./node_modules/@abaplint
|
|
|
5354
5354
|
__exportStar(__webpack_require__(/*! ./sql_path */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_path.js"), exports);
|
|
5355
5355
|
__exportStar(__webpack_require__(/*! ./sql_source_simple */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source_simple.js"), exports);
|
|
5356
5356
|
__exportStar(__webpack_require__(/*! ./sql_source */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source.js"), exports);
|
|
5357
|
+
__exportStar(__webpack_require__(/*! ./sql_source_no_space */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source_no_space.js"), exports);
|
|
5357
5358
|
__exportStar(__webpack_require__(/*! ./sql_target */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_target.js"), exports);
|
|
5358
5359
|
__exportStar(__webpack_require__(/*! ./sql_up_to */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_up_to.js"), exports);
|
|
5359
5360
|
__exportStar(__webpack_require__(/*! ./string_template_formatting */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/string_template_formatting.js"), exports);
|
|
@@ -7848,7 +7849,7 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
|
|
|
7848
7849
|
class SQLIn extends combi_1.Expression {
|
|
7849
7850
|
getRunnable() {
|
|
7850
7851
|
const val = new _1.SQLSource();
|
|
7851
|
-
const short =
|
|
7852
|
+
const short = new _1.SQLSourceNoSpace();
|
|
7852
7853
|
const listOld = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.WParenLeft), (0, combi_1.alt)((0, combi_1.ver)(version_1.Version.v740sp05, short), val), (0, combi_1.starPrio)((0, combi_1.seq)(",", val)), (0, combi_1.altPrio)((0, combi_1.tok)(tokens_1.ParenRight), (0, combi_1.tok)(tokens_1.ParenRightW), (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
7853
7854
|
const listNew = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.WParenLeftW), val, (0, combi_1.starPrio)((0, combi_1.seq)(",", (0, combi_1.altPrio)(short, val))), (0, combi_1.altPrio)((0, combi_1.tok)(tokens_1.WParenRight), (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
7854
7855
|
const list = (0, combi_1.alt)(listOld, (0, combi_1.ver)(version_1.Version.v740sp02, listNew)); // version is a guess, https://github.com/abaplint/abaplint/issues/2530
|
|
@@ -8032,6 +8033,32 @@ exports.SQLSource = SQLSource;
|
|
|
8032
8033
|
|
|
8033
8034
|
/***/ }),
|
|
8034
8035
|
|
|
8036
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source_no_space.js":
|
|
8037
|
+
/*!****************************************************************************************************!*\
|
|
8038
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source_no_space.js ***!
|
|
8039
|
+
\****************************************************************************************************/
|
|
8040
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
8041
|
+
|
|
8042
|
+
"use strict";
|
|
8043
|
+
|
|
8044
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
8045
|
+
exports.SQLSourceNoSpace = void 0;
|
|
8046
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
8047
|
+
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
8048
|
+
const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
8049
|
+
const _1 = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
8050
|
+
class SQLSourceNoSpace extends combi_1.Expression {
|
|
8051
|
+
getRunnable() {
|
|
8052
|
+
const paren = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.ParenLeftW), _1.Source, (0, combi_1.tok)(tokens_1.WParenRightW));
|
|
8053
|
+
const at = (0, combi_1.ver)(version_1.Version.v740sp05, (0, combi_1.seq)((0, combi_1.tok)(tokens_1.At), (0, combi_1.altPrio)(_1.SimpleSource3, paren)));
|
|
8054
|
+
return (0, combi_1.alt)(_1.SQLAliasField, _1.SimpleSource3, at);
|
|
8055
|
+
}
|
|
8056
|
+
}
|
|
8057
|
+
exports.SQLSourceNoSpace = SQLSourceNoSpace;
|
|
8058
|
+
//# sourceMappingURL=sql_source_no_space.js.map
|
|
8059
|
+
|
|
8060
|
+
/***/ }),
|
|
8061
|
+
|
|
8035
8062
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source_simple.js":
|
|
8036
8063
|
/*!**************************************************************************************************!*\
|
|
8037
8064
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_source_simple.js ***!
|
|
@@ -50111,7 +50138,7 @@ class Registry {
|
|
|
50111
50138
|
}
|
|
50112
50139
|
static abaplintVersion() {
|
|
50113
50140
|
// magic, see build script "version.sh"
|
|
50114
|
-
return "2.102.
|
|
50141
|
+
return "2.102.63";
|
|
50115
50142
|
}
|
|
50116
50143
|
getDDICReferences() {
|
|
50117
50144
|
return this.ddicReferences;
|
|
@@ -55296,6 +55323,7 @@ Make sure to test the downported code, it might not always be completely correct
|
|
|
55296
55323
|
};
|
|
55297
55324
|
const candidates = [high.findAllExpressionsRecursive(Expressions.SQLTarget),
|
|
55298
55325
|
high.findAllExpressionsRecursive(Expressions.SQLSource),
|
|
55326
|
+
high.findAllExpressionsRecursive(Expressions.SQLSourceNoSpace),
|
|
55299
55327
|
high.findAllExpressionsRecursive(Expressions.SQLSourceSimple)].flat();
|
|
55300
55328
|
for (const c of candidates.reverse()) {
|
|
55301
55329
|
if (c.getFirstToken() instanceof tokens_1.WAt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.63",
|
|
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.102.
|
|
41
|
+
"@abaplint/core": "^2.102.63",
|
|
42
42
|
"@types/chai": "^4.3.9",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.4",
|