@abaplint/cli 2.112.21 → 2.112.22

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 +5 -3
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -35293,8 +35293,10 @@ class StatementFlow {
35293
35293
  }
35294
35294
  if (inFlow === true) {
35295
35295
  ret.push(this.runEvent(collected, name));
35296
- inFlow = false;
35297
- collected = [];
35296
+ }
35297
+ else if (collected.length > 0) {
35298
+ // implicit START-OF-SELECTION
35299
+ ret.push(this.runEvent(collected, "START-OF-SELECTION."));
35298
35300
  }
35299
35301
  return ret.map(f => f.reduce());
35300
35302
  }
@@ -52621,7 +52623,7 @@ class Registry {
52621
52623
  }
52622
52624
  static abaplintVersion() {
52623
52625
  // magic, see build script "version.sh"
52624
- return "2.112.21";
52626
+ return "2.112.22";
52625
52627
  }
52626
52628
  getDDICReferences() {
52627
52629
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.112.21",
3
+ "version": "2.112.22",
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.112.21",
41
+ "@abaplint/core": "^2.112.22",
42
42
  "@types/chai": "^4.3.19",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",