@abaplint/transpiler 2.3.11 → 2.3.12
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.
|
@@ -116,6 +116,7 @@ export * from "./truncate_dataset";
|
|
|
116
116
|
export * from "./try";
|
|
117
117
|
export * from "./type_pools";
|
|
118
118
|
export * from "./type";
|
|
119
|
+
export * from "./retry";
|
|
119
120
|
export * from "./unassign";
|
|
120
121
|
export * from "./unpack";
|
|
121
122
|
export * from "./update_database";
|
|
@@ -132,6 +132,7 @@ __exportStar(require("./truncate_dataset"), exports);
|
|
|
132
132
|
__exportStar(require("./try"), exports);
|
|
133
133
|
__exportStar(require("./type_pools"), exports);
|
|
134
134
|
__exportStar(require("./type"), exports);
|
|
135
|
+
__exportStar(require("./retry"), exports);
|
|
135
136
|
__exportStar(require("./unassign"), exports);
|
|
136
137
|
__exportStar(require("./unpack"), exports);
|
|
137
138
|
__exportStar(require("./update_database"), 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 RetryTranspiler 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.RetryTranspiler = void 0;
|
|
4
|
+
const chunk_1 = require("../chunk");
|
|
5
|
+
class RetryTranspiler {
|
|
6
|
+
transpile(_node, _traversal) {
|
|
7
|
+
return new chunk_1.Chunk(`throw new Error("Retry, not supported, transpiler");`);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.RetryTranspiler = RetryTranspiler;
|
|
11
|
+
//# sourceMappingURL=retry.js.map
|