@abaplint/core 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.
@@ -85,8 +85,10 @@ class StatementFlow {
85
85
  }
86
86
  if (inFlow === true) {
87
87
  ret.push(this.runEvent(collected, name));
88
- inFlow = false;
89
- collected = [];
88
+ }
89
+ else if (collected.length > 0) {
90
+ // implicit START-OF-SELECTION
91
+ ret.push(this.runEvent(collected, "START-OF-SELECTION."));
90
92
  }
91
93
  return ret.map(f => f.reduce());
92
94
  }
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.112.21";
70
+ return "2.112.22";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.112.21",
3
+ "version": "2.112.22",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",