@abaplint/transpiler-cli 2.9.0 → 2.10.2

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/bundle.js +26 -4
  2. package/package.json +2 -2
package/build/bundle.js CHANGED
@@ -84738,19 +84738,20 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
84738
84738
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
84739
84739
  };
84740
84740
  Object.defineProperty(exports, "__esModule", ({ value: true }));
84741
- __exportStar(__webpack_require__(/*! ./case */ "./node_modules/@abaplint/transpiler/build/src/structures/case.js"), exports);
84741
+ __exportStar(__webpack_require__(/*! ./at_first */ "./node_modules/@abaplint/transpiler/build/src/structures/at_first.js"), exports);
84742
+ __exportStar(__webpack_require__(/*! ./at_last */ "./node_modules/@abaplint/transpiler/build/src/structures/at_last.js"), exports);
84742
84743
  __exportStar(__webpack_require__(/*! ./case_type */ "./node_modules/@abaplint/transpiler/build/src/structures/case_type.js"), exports);
84744
+ __exportStar(__webpack_require__(/*! ./case */ "./node_modules/@abaplint/transpiler/build/src/structures/case.js"), exports);
84743
84745
  __exportStar(__webpack_require__(/*! ./class_definition */ "./node_modules/@abaplint/transpiler/build/src/structures/class_definition.js"), exports);
84744
84746
  __exportStar(__webpack_require__(/*! ./class_implementation */ "./node_modules/@abaplint/transpiler/build/src/structures/class_implementation.js"), exports);
84745
84747
  __exportStar(__webpack_require__(/*! ./constants */ "./node_modules/@abaplint/transpiler/build/src/structures/constants.js"), exports);
84746
84748
  __exportStar(__webpack_require__(/*! ./data */ "./node_modules/@abaplint/transpiler/build/src/structures/data.js"), exports);
84747
84749
  __exportStar(__webpack_require__(/*! ./define */ "./node_modules/@abaplint/transpiler/build/src/structures/define.js"), exports);
84748
84750
  __exportStar(__webpack_require__(/*! ./do */ "./node_modules/@abaplint/transpiler/build/src/structures/do.js"), exports);
84749
- __exportStar(__webpack_require__(/*! ./at_first */ "./node_modules/@abaplint/transpiler/build/src/structures/at_first.js"), exports);
84750
- __exportStar(__webpack_require__(/*! ./at_last */ "./node_modules/@abaplint/transpiler/build/src/structures/at_last.js"), exports);
84751
84751
  __exportStar(__webpack_require__(/*! ./function_module */ "./node_modules/@abaplint/transpiler/build/src/structures/function_module.js"), exports);
84752
84752
  __exportStar(__webpack_require__(/*! ./interface */ "./node_modules/@abaplint/transpiler/build/src/structures/interface.js"), exports);
84753
84753
  __exportStar(__webpack_require__(/*! ./loop */ "./node_modules/@abaplint/transpiler/build/src/structures/loop.js"), exports);
84754
+ __exportStar(__webpack_require__(/*! ./module */ "./node_modules/@abaplint/transpiler/build/src/structures/module.js"), exports);
84754
84755
  __exportStar(__webpack_require__(/*! ./select */ "./node_modules/@abaplint/transpiler/build/src/structures/select.js"), exports);
84755
84756
  __exportStar(__webpack_require__(/*! ./try */ "./node_modules/@abaplint/transpiler/build/src/structures/try.js"), exports);
84756
84757
  __exportStar(__webpack_require__(/*! ./types */ "./node_modules/@abaplint/transpiler/build/src/structures/types.js"), exports);
@@ -84955,6 +84956,27 @@ exports.LoopTranspiler = LoopTranspiler;
84955
84956
 
84956
84957
  /***/ }),
84957
84958
 
84959
+ /***/ "./node_modules/@abaplint/transpiler/build/src/structures/module.js":
84960
+ /*!**************************************************************************!*\
84961
+ !*** ./node_modules/@abaplint/transpiler/build/src/structures/module.js ***!
84962
+ \**************************************************************************/
84963
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
84964
+
84965
+ "use strict";
84966
+
84967
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
84968
+ exports.ModuleTranspiler = void 0;
84969
+ const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
84970
+ class ModuleTranspiler {
84971
+ transpile(_node, _traversal) {
84972
+ return new chunk_1.Chunk().appendString("// MODULE skipped by transpiler\n");
84973
+ }
84974
+ }
84975
+ exports.ModuleTranspiler = ModuleTranspiler;
84976
+ //# sourceMappingURL=module.js.map
84977
+
84978
+ /***/ }),
84979
+
84958
84980
  /***/ "./node_modules/@abaplint/transpiler/build/src/structures/select.js":
84959
84981
  /*!**************************************************************************!*\
84960
84982
  !*** ./node_modules/@abaplint/transpiler/build/src/structures/select.js ***!
@@ -85480,7 +85502,7 @@ class Traversal {
85480
85502
  }
85481
85503
  if (node === undefined
85482
85504
  && this.obj instanceof abaplint.Objects.FunctionGroup
85483
- && this.obj.getInclude(filename.split(".")[2])) {
85505
+ && this.obj.getInclude(filename.split(".")[2].replace(/#/g, "/"))) {
85484
85506
  // workaround for INCLUDEs in function groups
85485
85507
  return this.fuctionGroupWorkaround(token);
85486
85508
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler-cli",
3
- "version": "2.9.0",
3
+ "version": "2.10.2",
4
4
  "description": "Transpiler - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -26,7 +26,7 @@
26
26
  "author": "abaplint",
27
27
  "license": "MIT",
28
28
  "devDependencies": {
29
- "@abaplint/transpiler": "^2.9.0",
29
+ "@abaplint/transpiler": "^2.10.2",
30
30
  "@types/glob": "^8.1.0",
31
31
  "glob": "=7.2.0",
32
32
  "@types/progress": "^2.0.7",