@abaplint/core 2.91.3 → 2.91.4

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.
@@ -2741,9 +2741,9 @@ declare interface IFunctionModuleParameter {
2741
2741
  declare interface IGlobalConfig {
2742
2742
  /** input files, glob format */
2743
2743
  files: string;
2744
- skipGeneratedGatewayClasses: boolean;
2745
- skipGeneratedPersistentClasses: boolean;
2746
- skipGeneratedFunctionGroups: boolean;
2744
+ skipGeneratedGatewayClasses?: boolean;
2745
+ skipGeneratedPersistentClasses?: boolean;
2746
+ skipGeneratedFunctionGroups?: boolean;
2747
2747
  /** Clone and parse dependencies specified in .apack-manifest.xml if it is present */
2748
2748
  useApackDependencies?: boolean;
2749
2749
  /** Do not report any issues for includes without main programs */
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.91.3";
71
+ return "2.91.4";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
@@ -36,6 +36,11 @@ class SelectPerformance {
36
36
 
37
37
  SELECT *: not reported if using INTO/APPENDING CORRESPONDING FIELDS OF`,
38
38
  tags: [_irule_1.RuleTag.SingleFile, _irule_1.RuleTag.Performance],
39
+ badExample: `SELECT field1, field2 FROM table
40
+ INTO @DATA(structure) UP TO 1 ROWS ORDER BY field3 DESCENDING.
41
+ ENDSELECT.`,
42
+ goodExample: `SELECT field1, field2 FROM table UP TO 1 ROWS
43
+ INTO TABLE @DATA(table) ORDER BY field3 DESCENDING`,
39
44
  };
40
45
  }
41
46
  initialize(reg) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.91.3",
3
+ "version": "2.91.4",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",
@@ -48,7 +48,7 @@
48
48
  "@microsoft/api-extractor": "^7.25.0",
49
49
  "@types/chai": "^4.3.1",
50
50
  "@types/mocha": "^9.1.1",
51
- "@types/node": "^17.0.41",
51
+ "@types/node": "^18.0.0",
52
52
  "chai": "^4.3.6",
53
53
  "eslint": "^8.17.0",
54
54
  "mocha": "^10.0.0",