@abaplint/core 2.80.6 → 2.80.7
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,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteReport = void 0;
|
|
4
|
+
const Expressions = require("../../2_statements/expressions");
|
|
5
|
+
const source_1 = require("../expressions/source");
|
|
6
|
+
class DeleteReport {
|
|
7
|
+
runSyntax(node, scope, filename) {
|
|
8
|
+
for (const s of node.findDirectExpressions(Expressions.Source)) {
|
|
9
|
+
new source_1.Source().runSyntax(s, scope, filename);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.DeleteReport = DeleteReport;
|
|
14
|
+
//# sourceMappingURL=delete_report.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InsertTextpool = void 0;
|
|
4
|
+
const Expressions = require("../../2_statements/expressions");
|
|
5
|
+
const source_1 = require("../expressions/source");
|
|
6
|
+
class InsertTextpool {
|
|
7
|
+
runSyntax(node, scope, filename) {
|
|
8
|
+
for (const s of node.findDirectExpressions(Expressions.Source)) {
|
|
9
|
+
new source_1.Source().runSyntax(s, scope, filename);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.InsertTextpool = InsertTextpool;
|
|
14
|
+
//# sourceMappingURL=insert_textpool.js.map
|
|
@@ -122,11 +122,13 @@ const set_titlebar_1 = require("./statements/set_titlebar");
|
|
|
122
122
|
const call_transaction_1 = require("./statements/call_transaction");
|
|
123
123
|
const set_handler_1 = require("./statements/set_handler");
|
|
124
124
|
const wait_1 = require("./statements/wait");
|
|
125
|
+
const delete_report_1 = require("./statements/delete_report");
|
|
125
126
|
const shift_1 = require("./statements/shift");
|
|
126
127
|
const set_bit_1 = require("./statements/set_bit");
|
|
127
128
|
const modify_screen_1 = require("./statements/modify_screen");
|
|
128
129
|
const delete_cluster_1 = require("./statements/delete_cluster");
|
|
129
130
|
const unassign_1 = require("./statements/unassign");
|
|
131
|
+
const insert_textpool_1 = require("./statements/insert_textpool");
|
|
130
132
|
// -----------------------------------
|
|
131
133
|
const map = {};
|
|
132
134
|
function addToMap(handler) {
|
|
@@ -154,8 +156,10 @@ if (Object.keys(map).length === 0) {
|
|
|
154
156
|
addToMap(new set_pf_status_1.SetPFStatus());
|
|
155
157
|
addToMap(new set_titlebar_1.SetTitlebar());
|
|
156
158
|
addToMap(new submit_1.Submit());
|
|
159
|
+
addToMap(new insert_textpool_1.InsertTextpool());
|
|
157
160
|
addToMap(new read_table_1.ReadTable());
|
|
158
161
|
addToMap(new syntax_check_1.SyntaxCheck());
|
|
162
|
+
addToMap(new delete_report_1.DeleteReport());
|
|
159
163
|
addToMap(new import_1.Import());
|
|
160
164
|
addToMap(new collect_1.Collect());
|
|
161
165
|
addToMap(new export_1.Export());
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.80.
|
|
3
|
+
"version": "2.80.7",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://abaplint.org",
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@microsoft/api-extractor": "^7.18.
|
|
57
|
+
"@microsoft/api-extractor": "^7.18.18",
|
|
58
58
|
"@types/chai": "^4.2.22",
|
|
59
59
|
"@types/mocha": "^9.0.0",
|
|
60
60
|
"@types/node": "^16.11.6",
|