@abaplint/transpiler 2.3.10 → 2.3.11

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.
@@ -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 CallTransactionTranspiler 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.CallTransactionTranspiler = void 0;
4
+ const chunk_1 = require("../chunk");
5
+ class CallTransactionTranspiler {
6
+ transpile(_node, _traversal) {
7
+ return new chunk_1.Chunk(`throw new Error("CallTransaction, not supported, transpiler");`);
8
+ }
9
+ }
10
+ exports.CallTransactionTranspiler = CallTransactionTranspiler;
11
+ //# sourceMappingURL=call_transaction.js.map
@@ -7,11 +7,11 @@ export * from "./authority_check";
7
7
  export * from "./break_id";
8
8
  export * from "./call_function";
9
9
  export * from "./call_kernel";
10
+ export * from "./call_screen";
11
+ export * from "./call_transaction";
10
12
  export * from "./call_transformation";
11
13
  export * from "./call";
12
14
  export * from "./case";
13
- export * from "./call_screen";
14
- export * from "./set_screen";
15
15
  export * from "./check";
16
16
  export * from "./class_deferred";
17
17
  export * from "./class_definition_load";
@@ -103,6 +103,7 @@ export * from "./set_dataset";
103
103
  export * from "./set_handler";
104
104
  export * from "./set_locale";
105
105
  export * from "./set_parameter";
106
+ export * from "./set_screen";
106
107
  export * from "./shift";
107
108
  export * from "./sort_dataset";
108
109
  export * from "./sort";
@@ -23,11 +23,11 @@ __exportStar(require("./authority_check"), exports);
23
23
  __exportStar(require("./break_id"), exports);
24
24
  __exportStar(require("./call_function"), exports);
25
25
  __exportStar(require("./call_kernel"), exports);
26
+ __exportStar(require("./call_screen"), exports);
27
+ __exportStar(require("./call_transaction"), exports);
26
28
  __exportStar(require("./call_transformation"), exports);
27
29
  __exportStar(require("./call"), exports);
28
30
  __exportStar(require("./case"), exports);
29
- __exportStar(require("./call_screen"), exports);
30
- __exportStar(require("./set_screen"), exports);
31
31
  __exportStar(require("./check"), exports);
32
32
  __exportStar(require("./class_deferred"), exports);
33
33
  __exportStar(require("./class_definition_load"), exports);
@@ -119,6 +119,7 @@ __exportStar(require("./set_dataset"), exports);
119
119
  __exportStar(require("./set_handler"), exports);
120
120
  __exportStar(require("./set_locale"), exports);
121
121
  __exportStar(require("./set_parameter"), exports);
122
+ __exportStar(require("./set_screen"), exports);
122
123
  __exportStar(require("./shift"), exports);
123
124
  __exportStar(require("./sort_dataset"), exports);
124
125
  __exportStar(require("./sort"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.3.10",
3
+ "version": "2.3.11",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "author": "abaplint",
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
- "@abaplint/core": "^2.93.46",
31
+ "@abaplint/core": "^2.93.47",
32
32
  "source-map": "^0.7.4"
33
33
  },
34
34
  "devDependencies": {