@abaplint/cli 2.113.89 → 2.113.90
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 +11 -6
- package/package.json +3 -3
package/build/cli.js
CHANGED
|
@@ -7928,7 +7928,7 @@ exports.SQLAliasField = void 0;
|
|
|
7928
7928
|
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
7929
7929
|
class SQLAliasField extends combi_1.Expression {
|
|
7930
7930
|
getRunnable() {
|
|
7931
|
-
return (0, combi_1.regex)(/^(\/\w+\/)?\w
|
|
7931
|
+
return (0, combi_1.regex)(/^(\/\w+\/)?\w+~(\/\w+\/)?\w+$/);
|
|
7932
7932
|
}
|
|
7933
7933
|
}
|
|
7934
7934
|
exports.SQLAliasField = SQLAliasField;
|
|
@@ -8468,8 +8468,12 @@ class SQLFunction extends combi_1.Expression {
|
|
|
8468
8468
|
const round = (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)((0, combi_1.regex)(/^round$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, commaParam, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8469
8469
|
const upper = (0, combi_1.ver)(version_1.Version.v751, (0, combi_1.seq)((0, combi_1.regex)(/^upper$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8470
8470
|
const uuid = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)((0, combi_1.regex)(/^uuid$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8471
|
-
const concat_with_space = (0, combi_1.ver)(version_1.Version.
|
|
8472
|
-
|
|
8471
|
+
const concat_with_space = (0, combi_1.ver)(version_1.Version.v751, (0, combi_1.seq)((0, combi_1.regex)(/^concat_with_space$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, commaParam, commaParam, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8472
|
+
// dunno if the version for substring is correct
|
|
8473
|
+
const substring = (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)((0, combi_1.regex)(/^substring$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, commaParam, commaParam, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8474
|
+
const ltrim = (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)((0, combi_1.regex)(/^ltrim$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, commaParam, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8475
|
+
const rtrim = (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)((0, combi_1.regex)(/^rtrim$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, commaParam, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
8476
|
+
return (0, combi_1.altPrio)(uuid, abs, ceil, floor, cast, div, mod, coalesce, concat, replace, length, lower, upper, round, concat_with_space, ltrim, rtrim, substring);
|
|
8473
8477
|
}
|
|
8474
8478
|
}
|
|
8475
8479
|
exports.SQLFunction = SQLFunction;
|
|
@@ -15037,7 +15041,7 @@ class ModifyLine {
|
|
|
15037
15041
|
getMatcher() {
|
|
15038
15042
|
const onOff = (0, combi_1.alt)("ON", "OFF");
|
|
15039
15043
|
const eq = (0, combi_1.seq)("=", expressions_1.Source);
|
|
15040
|
-
const form = (0, combi_1.seq)((0, combi_1.alt)("INVERSE", "INPUT", "COLOR", "HOTSPOT"), (0, combi_1.alt)(eq, onOff));
|
|
15044
|
+
const form = (0, combi_1.seq)((0, combi_1.alt)("INVERSE", "INPUT", "COLOR", "HOTSPOT"), (0, combi_1.opt)((0, combi_1.alt)(eq, onOff)));
|
|
15041
15045
|
const from = (0, combi_1.seq)("FROM", expressions_1.Source);
|
|
15042
15046
|
const value = (0, combi_1.seq)("FIELD VALUE", (0, combi_1.plus)((0, combi_1.seq)(expressions_1.Source, (0, combi_1.optPrio)(from))));
|
|
15043
15047
|
const format = (0, combi_1.seq)("FIELD FORMAT", expressions_1.Source, (0, combi_1.opt)(form));
|
|
@@ -18126,7 +18130,8 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
|
|
|
18126
18130
|
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
18127
18131
|
class VerificationMessage {
|
|
18128
18132
|
getMatcher() {
|
|
18129
|
-
const
|
|
18133
|
+
const priority = (0, combi_1.seq)("PRIORITY", expressions_1.Source);
|
|
18134
|
+
const ret = (0, combi_1.seq)("VERIFICATION-MESSAGE", expressions_1.Source, expressions_1.Source, (0, combi_1.opt)(priority));
|
|
18130
18135
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
18131
18136
|
}
|
|
18132
18137
|
}
|
|
@@ -53669,7 +53674,7 @@ class Registry {
|
|
|
53669
53674
|
}
|
|
53670
53675
|
static abaplintVersion() {
|
|
53671
53676
|
// magic, see build script "version.sh"
|
|
53672
|
-
return "2.113.
|
|
53677
|
+
return "2.113.90";
|
|
53673
53678
|
}
|
|
53674
53679
|
getDDICReferences() {
|
|
53675
53680
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.90",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.113.
|
|
41
|
+
"@abaplint/core": "^2.113.90",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|
|
45
45
|
"@types/mocha": "^10.0.10",
|
|
46
|
-
"@types/node": "^22.10.
|
|
46
|
+
"@types/node": "^22.10.6",
|
|
47
47
|
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.5.0",
|
|
49
49
|
"chalk": "^5.4.1",
|