@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>";
@@ -63,7 +63,7 @@ class Registry {
63
63
  }
64
64
  static abaplintVersion() {
65
65
  // magic, see build script "version.sh"
66
- return "2.93.40";
66
+ return "2.93.41";
67
67
  }
68
68
  getDDICReferences() {
69
69
  return this.references;
@@ -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.40",
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.32.0",
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.3",
52
+ "@types/node": "^18.8.5",
53
53
  "chai": "^4.3.6",
54
54
  "eslint": "^8.25.0",
55
55
  "mocha": "^10.0.0",