@abaplint/core 2.93.40 → 2.93.41
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.
|
@@ -72,7 +72,7 @@ class DumpScope {
|
|
|
72
72
|
}
|
|
73
73
|
ret = ret + "<br>";
|
|
74
74
|
}
|
|
75
|
-
ret += sident + node.getData().cdefs.length + " class definitions<br>";
|
|
75
|
+
ret += sident + Object.keys(node.getData().cdefs).length + " class definitions<br>";
|
|
76
76
|
ret += sident + node.getData().idefs.length + " interface definitions<br>";
|
|
77
77
|
ret += sident + node.getData().forms.length + " form definitions<br>";
|
|
78
78
|
ret += sident + node.getData().references.length + " references<br>";
|
package/build/src/registry.js
CHANGED
|
@@ -46,7 +46,6 @@ class KeepSingleParameterCallsOnOneLine extends _abap_rule_1.ABAPRule {
|
|
|
46
46
|
return [];
|
|
47
47
|
}
|
|
48
48
|
for (const s of file.getStatements()) {
|
|
49
|
-
// todo, add length as configurable setting
|
|
50
49
|
if (this.isMultiLine(s) === false
|
|
51
50
|
|| this.calcStatementLength(s) > this.getConfig().length
|
|
52
51
|
|| this.containsNewLineValue(s)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.93.
|
|
3
|
+
"version": "2.93.41",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://abaplint.org",
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
49
|
+
"@microsoft/api-extractor": "^7.33.1",
|
|
50
50
|
"@types/chai": "^4.3.3",
|
|
51
51
|
"@types/mocha": "^10.0.0",
|
|
52
|
-
"@types/node": "^18.8.
|
|
52
|
+
"@types/node": "^18.8.5",
|
|
53
53
|
"chai": "^4.3.6",
|
|
54
54
|
"eslint": "^8.25.0",
|
|
55
55
|
"mocha": "^10.0.0",
|