@abaplint/cli 2.113.149 → 2.113.150

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.
Files changed (2) hide show
  1. package/build/cli.js +7 -5
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -53154,7 +53154,7 @@ class Table extends _abstract_object_1.AbstractObject {
53154
53154
  }
53155
53155
  if (found instanceof Types.StructureType) {
53156
53156
  if (field.GROUPNAME !== undefined) {
53157
- components.push({ name: field.GROUPNAME, type: found });
53157
+ components.push({ name: field.GROUPNAME, type: found, asInclude: true });
53158
53158
  }
53159
53159
  if (field.FIELDNAME.startsWith(".INCLU-") === false
53160
53160
  || field.FIELDNAME === ".INCLU--AP") {
@@ -54677,7 +54677,7 @@ class Registry {
54677
54677
  }
54678
54678
  static abaplintVersion() {
54679
54679
  // magic, see build script "version.sh"
54680
- return "2.113.149";
54680
+ return "2.113.150";
54681
54681
  }
54682
54682
  getDDICReferences() {
54683
54683
  return this.ddicReferences;
@@ -68453,6 +68453,7 @@ exports.MethodParameterNames = MethodParameterNames;
68453
68453
 
68454
68454
  Object.defineProperty(exports, "__esModule", ({ value: true }));
68455
68455
  exports.MixReturning = exports.MixReturningConf = void 0;
68456
+ /* eslint-disable max-len */
68456
68457
  const issue_1 = __webpack_require__(/*! ../issue */ "./node_modules/@abaplint/core/build/src/issue.js");
68457
68458
  const _abap_rule_1 = __webpack_require__(/*! ./_abap_rule */ "./node_modules/@abaplint/core/build/src/rules/_abap_rule.js");
68458
68459
  const Statements = __webpack_require__(/*! ../abap/2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
@@ -68472,9 +68473,10 @@ class MixReturning extends _abap_rule_1.ABAPRule {
68472
68473
  key: "mix_returning",
68473
68474
  title: "Mix of returning and exporting",
68474
68475
  shortDescription: `Checks that methods don't have a mixture of returning and exporting/changing parameters`,
68475
- // eslint-disable-next-line max-len
68476
- extendedInformation: `https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#use-either-returning-or-exporting-or-changing-but-not-a-combination`,
68477
- tags: [_irule_1.RuleTag.Styleguide, _irule_1.RuleTag.SingleFile],
68476
+ extendedInformation: `https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#use-either-returning-or-exporting-or-changing-but-not-a-combination
68477
+
68478
+ This syntax is not allowed on versions earlier than 740sp02, https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-us/abennews-740-abap_objects.htm#!ABAP_MODIFICATION_1@1@`,
68479
+ tags: [_irule_1.RuleTag.Styleguide, _irule_1.RuleTag.SingleFile, _irule_1.RuleTag.Syntax],
68478
68480
  badExample: `CLASS lcl DEFINITION.
68479
68481
  PUBLIC SECTION.
68480
68482
  METHODS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.149",
3
+ "version": "2.113.150",
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.113.149",
41
+ "@abaplint/core": "^2.113.150",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",