@abaplint/transpiler 2.3.69 → 2.3.71
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.
- package/build/src/statements/index.d.ts +2 -0
- package/build/src/statements/index.js +2 -0
- package/build/src/statements/read_textpool.d.ts +7 -0
- package/build/src/statements/read_textpool.js +11 -0
- package/build/src/statements/syntax_check.d.ts +7 -0
- package/build/src/statements/syntax_check.js +11 -0
- package/package.json +1 -1
|
@@ -90,6 +90,7 @@ export * from "./read_dataset";
|
|
|
90
90
|
export * from "./read_line";
|
|
91
91
|
export * from "./read_report";
|
|
92
92
|
export * from "./read_table";
|
|
93
|
+
export * from "./read_textpool";
|
|
93
94
|
export * from "./receive";
|
|
94
95
|
export * from "./refresh";
|
|
95
96
|
export * from "./replace";
|
|
@@ -113,6 +114,7 @@ export * from "./split";
|
|
|
113
114
|
export * from "./start_of_selection";
|
|
114
115
|
export * from "./submit";
|
|
115
116
|
export * from "./subtract";
|
|
117
|
+
export * from "./syntax_check";
|
|
116
118
|
export * from "./translate";
|
|
117
119
|
export * from "./truncate_dataset";
|
|
118
120
|
export * from "./try";
|
|
@@ -106,6 +106,7 @@ __exportStar(require("./read_dataset"), exports);
|
|
|
106
106
|
__exportStar(require("./read_line"), exports);
|
|
107
107
|
__exportStar(require("./read_report"), exports);
|
|
108
108
|
__exportStar(require("./read_table"), exports);
|
|
109
|
+
__exportStar(require("./read_textpool"), exports);
|
|
109
110
|
__exportStar(require("./receive"), exports);
|
|
110
111
|
__exportStar(require("./refresh"), exports);
|
|
111
112
|
__exportStar(require("./replace"), exports);
|
|
@@ -129,6 +130,7 @@ __exportStar(require("./split"), exports);
|
|
|
129
130
|
__exportStar(require("./start_of_selection"), exports);
|
|
130
131
|
__exportStar(require("./submit"), exports);
|
|
131
132
|
__exportStar(require("./subtract"), exports);
|
|
133
|
+
__exportStar(require("./syntax_check"), exports);
|
|
132
134
|
__exportStar(require("./translate"), exports);
|
|
133
135
|
__exportStar(require("./truncate_dataset"), exports);
|
|
134
136
|
__exportStar(require("./try"), 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 ReadTextpoolTranspiler 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.ReadTextpoolTranspiler = void 0;
|
|
4
|
+
const chunk_1 = require("../chunk");
|
|
5
|
+
class ReadTextpoolTranspiler {
|
|
6
|
+
transpile(_node, _traversal) {
|
|
7
|
+
return new chunk_1.Chunk(`throw new Error("ReadTextpool, transpiler todo");`);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.ReadTextpoolTranspiler = ReadTextpoolTranspiler;
|
|
11
|
+
//# sourceMappingURL=read_textpool.js.map
|
|
@@ -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 SyntaxCheckTranspiler 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.SyntaxCheckTranspiler = void 0;
|
|
4
|
+
const chunk_1 = require("../chunk");
|
|
5
|
+
class SyntaxCheckTranspiler {
|
|
6
|
+
transpile(_node, _traversal) {
|
|
7
|
+
return new chunk_1.Chunk(`throw new Error("SyntaxCheck, transpiler todo");`);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.SyntaxCheckTranspiler = SyntaxCheckTranspiler;
|
|
11
|
+
//# sourceMappingURL=syntax_check.js.map
|