@abaplint/transpiler 2.3.80 → 2.3.82

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.
@@ -78,6 +78,7 @@ class ConstantTranspiler {
78
78
  while (reg.test(str)) {
79
79
  str = str.replace(reg, "$1\\`$2");
80
80
  }
81
+ str = str.replace(/\$\{/g, "\\${");
81
82
  }
82
83
  return str;
83
84
  }
@@ -81,6 +81,7 @@ export * from "./message";
81
81
  export * from "./method_implementation";
82
82
  export * from "./modify_database";
83
83
  export * from "./modify_internal";
84
+ export * from "./modify_screen";
84
85
  export * from "./move_corresponding";
85
86
  export * from "./move";
86
87
  export * from "./open_dataset";
@@ -97,6 +97,7 @@ __exportStar(require("./message"), exports);
97
97
  __exportStar(require("./method_implementation"), exports);
98
98
  __exportStar(require("./modify_database"), exports);
99
99
  __exportStar(require("./modify_internal"), exports);
100
+ __exportStar(require("./modify_screen"), exports);
100
101
  __exportStar(require("./move_corresponding"), exports);
101
102
  __exportStar(require("./move"), exports);
102
103
  __exportStar(require("./open_dataset"), exports);
@@ -0,0 +1,7 @@
1
+ import * as abaplint from "@abaplint/core";
2
+ import { IStatementTranspiler } from "./_statement_transpiler";
3
+ import { Traversal } from "../traversal";
4
+ import { Chunk } from "../chunk";
5
+ export declare class ModifyScreenTranspiler implements IStatementTranspiler {
6
+ transpile(_node: abaplint.Nodes.StatementNode, _traversal: Traversal): Chunk;
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ModifyScreenTranspiler = void 0;
4
+ const chunk_1 = require("../chunk");
5
+ class ModifyScreenTranspiler {
6
+ transpile(_node, _traversal) {
7
+ return new chunk_1.Chunk(`throw new Error("ModifyScreen, not supported, transpiler");`);
8
+ }
9
+ }
10
+ exports.ModifyScreenTranspiler = ModifyScreenTranspiler;
11
+ //# sourceMappingURL=modify_screen.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.3.80",
3
+ "version": "2.3.82",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",