@abaplint/transpiler-cli 2.3.124 → 2.3.125
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 +9 -6
- package/package.json +3 -3
package/build/bundle.js
CHANGED
|
@@ -39476,9 +39476,9 @@ class ABAPObject extends _abstract_object_1.AbstractObject {
|
|
|
39476
39476
|
return this.texts;
|
|
39477
39477
|
}
|
|
39478
39478
|
findTexts(parsed) {
|
|
39479
|
-
var _a, _b;
|
|
39479
|
+
var _a, _b, _c, _d;
|
|
39480
39480
|
this.texts = {};
|
|
39481
|
-
if (((_b = (_a = parsed === null || parsed === void 0 ? void 0 : parsed.abapGit["asx:abap"]["asx:values"]) === null ||
|
|
39481
|
+
if (((_d = (_c = (_b = (_a = parsed === null || parsed === void 0 ? void 0 : parsed.abapGit) === null || _a === void 0 ? void 0 : _a["asx:abap"]) === null || _b === void 0 ? void 0 : _b["asx:values"]) === null || _c === void 0 ? void 0 : _c.TPOOL) === null || _d === void 0 ? void 0 : _d.item) === undefined) {
|
|
39482
39482
|
return;
|
|
39483
39483
|
}
|
|
39484
39484
|
for (const t of (0, xml_utils_1.xmlToArray)(parsed.abapGit["asx:abap"]["asx:values"].TPOOL.item)) {
|
|
@@ -45829,7 +45829,7 @@ class Registry {
|
|
|
45829
45829
|
}
|
|
45830
45830
|
static abaplintVersion() {
|
|
45831
45831
|
// magic, see build script "version.sh"
|
|
45832
|
-
return "2.95.
|
|
45832
|
+
return "2.95.8";
|
|
45833
45833
|
}
|
|
45834
45834
|
getDDICReferences() {
|
|
45835
45835
|
return this.references;
|
|
@@ -60508,10 +60508,12 @@ https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#prefer-is-n
|
|
|
60508
60508
|
tags: [_irule_1.RuleTag.Styleguide, _irule_1.RuleTag.Quickfix, _irule_1.RuleTag.SingleFile],
|
|
60509
60509
|
goodExample: `IF variable IS NOT INITIAL.
|
|
60510
60510
|
IF variable NP 'TODO*'.
|
|
60511
|
-
IF variable <> 42
|
|
60511
|
+
IF variable <> 42.
|
|
60512
|
+
IF variable CO 'hello'.`,
|
|
60512
60513
|
badExample: `IF NOT variable IS INITIAL.
|
|
60513
60514
|
IF NOT variable CP 'TODO*'.
|
|
60514
|
-
IF NOT variable = 42
|
|
60515
|
+
IF NOT variable = 42.
|
|
60516
|
+
IF NOT variable CA 'hello'.`,
|
|
60515
60517
|
};
|
|
60516
60518
|
}
|
|
60517
60519
|
getConfig() {
|
|
@@ -78159,7 +78161,8 @@ const defaultOptions = {
|
|
|
78159
78161
|
cdataPropName: false,
|
|
78160
78162
|
numberParseOptions: {
|
|
78161
78163
|
hex: true,
|
|
78162
|
-
leadingZeros: true
|
|
78164
|
+
leadingZeros: true,
|
|
78165
|
+
eNotation: false
|
|
78163
78166
|
},
|
|
78164
78167
|
tagValueProcessor: function(tagName, val) {
|
|
78165
78168
|
return val;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.125",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abap_transpile": "./abap_transpile"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"author": "abaplint",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@abaplint/transpiler": "^2.3.
|
|
28
|
+
"@abaplint/transpiler": "^2.3.125",
|
|
29
29
|
"@types/glob": "^7.2.0",
|
|
30
30
|
"glob": "=7.2.0",
|
|
31
31
|
"@types/progress": "^2.0.5",
|
|
32
|
-
"@abaplint/core": "^2.95.
|
|
32
|
+
"@abaplint/core": "^2.95.8",
|
|
33
33
|
"progress": "^2.0.3",
|
|
34
34
|
"webpack": "^5.75.0",
|
|
35
35
|
"webpack-cli": "^5.0.1",
|