@abaplint/transpiler-cli 2.7.1 → 2.7.3
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/bundle.js +245 -90
- package/package.json +4 -4
package/build/bundle.js
CHANGED
|
@@ -68082,6 +68082,12 @@ exports.DatabaseSetup = void 0;
|
|
|
68082
68082
|
/* eslint-disable max-len */
|
|
68083
68083
|
const abaplint = __webpack_require__(/*! @abaplint/core */ "./node_modules/@abaplint/core/build/src/index.js");
|
|
68084
68084
|
const sqlite_database_schema_1 = __webpack_require__(/*! ./sqlite_database_schema */ "./node_modules/@abaplint/transpiler/build/src/db/sqlite_database_schema.js");
|
|
68085
|
+
const pg_database_schema_1 = __webpack_require__(/*! ./pg_database_schema */ "./node_modules/@abaplint/transpiler/build/src/db/pg_database_schema.js");
|
|
68086
|
+
/////////////////////////
|
|
68087
|
+
// NOTES
|
|
68088
|
+
/////////////////////////
|
|
68089
|
+
// Postgres is case sensitive, so all column names should be lower case
|
|
68090
|
+
// Sqlite escapes field names with single qoute, postgres with double
|
|
68085
68091
|
class DatabaseSetup {
|
|
68086
68092
|
constructor(reg) {
|
|
68087
68093
|
this.reg = reg;
|
|
@@ -68091,7 +68097,7 @@ class DatabaseSetup {
|
|
|
68091
68097
|
schemas: {
|
|
68092
68098
|
sqlite: new sqlite_database_schema_1.SQLiteDatabaseSchema(this.reg).run(),
|
|
68093
68099
|
hdb: ["todo"],
|
|
68094
|
-
pg:
|
|
68100
|
+
pg: new pg_database_schema_1.PGDatabaseSchema(this.reg).run(),
|
|
68095
68101
|
},
|
|
68096
68102
|
insert: this.buildInsert(options),
|
|
68097
68103
|
};
|
|
@@ -68135,7 +68141,7 @@ class DatabaseSetup {
|
|
|
68135
68141
|
const type = tabl.parseType(this.reg);
|
|
68136
68142
|
if (type instanceof abaplint.BasicTypes.StructureType && type.getComponents().length >= 3) {
|
|
68137
68143
|
// todo, this should take the client number from the settings
|
|
68138
|
-
return `INSERT INTO t000 ('
|
|
68144
|
+
return `INSERT INTO t000 ('mandt', 'cccategory', 'ccnocliind') VALUES ('123', '', '');`;
|
|
68139
68145
|
}
|
|
68140
68146
|
else {
|
|
68141
68147
|
return "";
|
|
@@ -68149,7 +68155,7 @@ class DatabaseSetup {
|
|
|
68149
68155
|
}
|
|
68150
68156
|
let ret = "";
|
|
68151
68157
|
for (const m of msag.getMessages()) {
|
|
68152
|
-
ret += `INSERT INTO t100 (
|
|
68158
|
+
ret += `INSERT INTO t100 ("sprsl", "arbgb", "msgnr", "text") VALUES ('E', '${msag.getName().padEnd(20, " ")}', '${m.getNumber()}', '${this.escape(m.getMessage().padEnd(73, " "))}');\n`;
|
|
68153
68159
|
}
|
|
68154
68160
|
return ret;
|
|
68155
68161
|
}
|
|
@@ -68167,6 +68173,137 @@ exports.DatabaseSetup = DatabaseSetup;
|
|
|
68167
68173
|
|
|
68168
68174
|
/***/ }),
|
|
68169
68175
|
|
|
68176
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/db/pg_database_schema.js":
|
|
68177
|
+
/*!******************************************************************************!*\
|
|
68178
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/db/pg_database_schema.js ***!
|
|
68179
|
+
\******************************************************************************/
|
|
68180
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
68181
|
+
|
|
68182
|
+
"use strict";
|
|
68183
|
+
|
|
68184
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
68185
|
+
exports.PGDatabaseSchema = void 0;
|
|
68186
|
+
const abaplint = __webpack_require__(/*! @abaplint/core */ "./node_modules/@abaplint/core/build/src/index.js");
|
|
68187
|
+
class PGDatabaseSchema {
|
|
68188
|
+
constructor(reg) {
|
|
68189
|
+
this.reg = reg;
|
|
68190
|
+
}
|
|
68191
|
+
run() {
|
|
68192
|
+
const statements = [];
|
|
68193
|
+
// CREATE TABLEs
|
|
68194
|
+
for (const obj of this.reg.getObjects()) {
|
|
68195
|
+
if (obj instanceof abaplint.Objects.Table
|
|
68196
|
+
&& obj.getTableCategory() === abaplint.Objects.TableCategory.Transparent) {
|
|
68197
|
+
statements.push(this.buildTABL(obj).trim());
|
|
68198
|
+
}
|
|
68199
|
+
}
|
|
68200
|
+
// CREATE VIEWs after TABLEs
|
|
68201
|
+
// todo: what if the view is based on another view?
|
|
68202
|
+
for (const obj of this.reg.getObjects()) {
|
|
68203
|
+
if (obj instanceof abaplint.Objects.View) {
|
|
68204
|
+
statements.push(this.buildVIEW(obj).trim());
|
|
68205
|
+
}
|
|
68206
|
+
}
|
|
68207
|
+
return statements;
|
|
68208
|
+
}
|
|
68209
|
+
//////////////////
|
|
68210
|
+
// https://www.sqlite.org/lang_createview.html
|
|
68211
|
+
buildVIEW(view) {
|
|
68212
|
+
const fields = view.getFields();
|
|
68213
|
+
let firstTabname = "";
|
|
68214
|
+
const columns = fields === null || fields === void 0 ? void 0 : fields.map((f) => {
|
|
68215
|
+
firstTabname = "'" + f.TABNAME.toLowerCase() + "'";
|
|
68216
|
+
return firstTabname + "." + f.FIELDNAME.toLowerCase() + " AS " + f.VIEWFIELD.toLowerCase();
|
|
68217
|
+
}).join(", ");
|
|
68218
|
+
let from = "";
|
|
68219
|
+
let previous = "";
|
|
68220
|
+
for (const j of view.getJoin() || []) {
|
|
68221
|
+
if (previous === "") {
|
|
68222
|
+
from += "'" + j.LTAB.toLowerCase() + "' INNER JOIN '" + j.RTAB.toLowerCase() + "' ON '" + j.LTAB.toLowerCase() + "'." + j.LFIELD.toLowerCase() + " = '" + j.RTAB.toLowerCase() + "'." + j.RFIELD.toLowerCase();
|
|
68223
|
+
}
|
|
68224
|
+
else if (previous === j.LTAB + "," + j.RTAB) {
|
|
68225
|
+
from += " AND '" + j.LTAB.toLowerCase() + "'." + j.LFIELD.toLowerCase() + " = '" + j.RTAB.toLowerCase() + "'." + j.RFIELD.toLowerCase();
|
|
68226
|
+
}
|
|
68227
|
+
else {
|
|
68228
|
+
from += " INNER JOIN '" + j.RTAB.toLowerCase() + "' ON '" + j.LTAB.toLowerCase() + "'." + j.LFIELD.toLowerCase() + " = '" + j.RTAB.toLowerCase() + "'." + j.RFIELD.toLowerCase();
|
|
68229
|
+
}
|
|
68230
|
+
previous = j.LTAB + "," + j.RTAB;
|
|
68231
|
+
}
|
|
68232
|
+
from = from.trim();
|
|
68233
|
+
if (from === "") {
|
|
68234
|
+
from = firstTabname;
|
|
68235
|
+
}
|
|
68236
|
+
return `CREATE VIEW '${view.getName().toLowerCase()}' AS SELECT ${columns} FROM ${from};\n`;
|
|
68237
|
+
}
|
|
68238
|
+
buildTABL(tabl) {
|
|
68239
|
+
const type = tabl.parseType(this.reg);
|
|
68240
|
+
if (!(type instanceof abaplint.BasicTypes.StructureType)) {
|
|
68241
|
+
return "";
|
|
68242
|
+
}
|
|
68243
|
+
const fields = [];
|
|
68244
|
+
const fieldsRaw = [];
|
|
68245
|
+
for (const field of type.getComponents()) {
|
|
68246
|
+
if (field.type instanceof abaplint.BasicTypes.StructureType) {
|
|
68247
|
+
// is a GROUP NAME
|
|
68248
|
+
continue;
|
|
68249
|
+
}
|
|
68250
|
+
fieldsRaw.push(field.name.toLowerCase());
|
|
68251
|
+
fields.push("\"" + field.name.toLowerCase() + "\" " + this.toType(field.type, field.name, tabl.getName()));
|
|
68252
|
+
}
|
|
68253
|
+
// assumption: all transparent tables have primary keys
|
|
68254
|
+
// add single quotes to field names to allow for keywords as field names
|
|
68255
|
+
const key = ", PRIMARY KEY(" + tabl.listKeys(this.reg)
|
|
68256
|
+
.filter(e => fieldsRaw.includes(e.toLowerCase()))
|
|
68257
|
+
.map(e => "\"" + e.toLowerCase() + "\"").join(",") + ")";
|
|
68258
|
+
return `CREATE TABLE "${tabl.getName().toLowerCase()}" (${fields.join(", ")}${key});\n`;
|
|
68259
|
+
}
|
|
68260
|
+
toType(type, fieldname, errorInfo) {
|
|
68261
|
+
if (type instanceof abaplint.BasicTypes.CharacterType) {
|
|
68262
|
+
return `NCHAR(${type.getLength()})`;
|
|
68263
|
+
}
|
|
68264
|
+
else if (type instanceof abaplint.BasicTypes.TimeType) {
|
|
68265
|
+
return `NCHAR(6)`;
|
|
68266
|
+
}
|
|
68267
|
+
else if (type instanceof abaplint.BasicTypes.DateType) {
|
|
68268
|
+
return `NCHAR(8)`;
|
|
68269
|
+
}
|
|
68270
|
+
else if (type instanceof abaplint.BasicTypes.NumericType) {
|
|
68271
|
+
// it will be fine, the runtime representation of numc is also text
|
|
68272
|
+
return `NCHAR(${type.getLength()})`;
|
|
68273
|
+
}
|
|
68274
|
+
else if (type instanceof abaplint.BasicTypes.StringType) {
|
|
68275
|
+
return `TEXT`;
|
|
68276
|
+
}
|
|
68277
|
+
else if (type instanceof abaplint.BasicTypes.XStringType) {
|
|
68278
|
+
// it will be fine, the runtime representation of xstring is also text
|
|
68279
|
+
return `TEXT`;
|
|
68280
|
+
}
|
|
68281
|
+
else if (type instanceof abaplint.BasicTypes.HexType) {
|
|
68282
|
+
return `NCHAR(${type.getLength() * 2})`;
|
|
68283
|
+
}
|
|
68284
|
+
else if (type instanceof abaplint.BasicTypes.IntegerType) {
|
|
68285
|
+
return `INT`;
|
|
68286
|
+
}
|
|
68287
|
+
else if (type instanceof abaplint.BasicTypes.FloatType
|
|
68288
|
+
|| type instanceof abaplint.BasicTypes.FloatingPointType) {
|
|
68289
|
+
return `REAL`;
|
|
68290
|
+
}
|
|
68291
|
+
else if (type instanceof abaplint.BasicTypes.PackedType) {
|
|
68292
|
+
return `DECIMAL(${type.getLength()},${type.getDecimals()})`;
|
|
68293
|
+
}
|
|
68294
|
+
else if (type instanceof abaplint.BasicTypes.VoidType) {
|
|
68295
|
+
throw `Type of ${errorInfo}-${fieldname} is VoidType(${type.getVoided()}), make sure the type is known, enable strict syntax checking`;
|
|
68296
|
+
}
|
|
68297
|
+
else {
|
|
68298
|
+
throw "database_setup: " + errorInfo + "-" + fieldname + ", todo toType handle: " + type.constructor.name;
|
|
68299
|
+
}
|
|
68300
|
+
}
|
|
68301
|
+
}
|
|
68302
|
+
exports.PGDatabaseSchema = PGDatabaseSchema;
|
|
68303
|
+
//# sourceMappingURL=pg_database_schema.js.map
|
|
68304
|
+
|
|
68305
|
+
/***/ }),
|
|
68306
|
+
|
|
68170
68307
|
/***/ "./node_modules/@abaplint/transpiler/build/src/db/sqlite_database_schema.js":
|
|
68171
68308
|
/*!**********************************************************************************!*\
|
|
68172
68309
|
!*** ./node_modules/@abaplint/transpiler/build/src/db/sqlite_database_schema.js ***!
|
|
@@ -72673,7 +72810,8 @@ class ClassImplementationTranspiler {
|
|
|
72673
72810
|
static INTERNAL_TYPE = 'CLAS';
|
|
72674
72811
|
static INTERNAL_NAME = '${traversal.buildInternalName(token.getStr(), def)}';
|
|
72675
72812
|
static IMPLEMENTED_INTERFACES = [${this.findImplementedByClass(traversal, def, scope).map(e => `"` + e.toUpperCase() + `"`).join(",")}];
|
|
72676
|
-
static ATTRIBUTES = {${traversal.buildAttributes(def, scope).join(",\n")}}
|
|
72813
|
+
static ATTRIBUTES = {${traversal.buildAttributes(def, scope).join(",\n")}};
|
|
72814
|
+
static METHODS = {${traversal.buildMethods(def, scope).join(",\n")}};`, node, traversal);
|
|
72677
72815
|
}
|
|
72678
72816
|
findImplementedInterface(traversal, def, scope) {
|
|
72679
72817
|
if (def === undefined || scope === undefined) {
|
|
@@ -77833,6 +77971,7 @@ class InterfaceTranspiler {
|
|
|
77833
77971
|
ret += `class ${name} {\n`;
|
|
77834
77972
|
ret += `static INTERNAL_TYPE = 'INTF';\n`;
|
|
77835
77973
|
ret += `static ATTRIBUTES = {${traversal.buildAttributes(def, scope).join(",\n")}};\n`;
|
|
77974
|
+
ret += `static METHODS = {${traversal.buildMethods(def, scope).join(",\n")}};\n`;
|
|
77836
77975
|
}
|
|
77837
77976
|
else if (c instanceof abaplint.Nodes.StatementNode && c.get() instanceof abaplint.Statements.EndInterface) {
|
|
77838
77977
|
ret += "}\n";
|
|
@@ -78587,6 +78726,32 @@ class Traversal {
|
|
|
78587
78726
|
}
|
|
78588
78727
|
return undefined;
|
|
78589
78728
|
}
|
|
78729
|
+
buildMethods(def, _scope) {
|
|
78730
|
+
const methods = [];
|
|
78731
|
+
if (def === undefined) {
|
|
78732
|
+
return methods;
|
|
78733
|
+
}
|
|
78734
|
+
for (const m of def.getMethodDefinitions().getAll()) {
|
|
78735
|
+
const parameters = [];
|
|
78736
|
+
for (const p of m.getParameters().getAll()) {
|
|
78737
|
+
const type = new transpile_types_1.TranspileTypes().toType(p.getType());
|
|
78738
|
+
const optional = m.getParameters().getOptional().includes(p.getName()) ? "X" : " ";
|
|
78739
|
+
parameters.push(`"${p.getName().toUpperCase()}": {"type": () => {return ${type};}, "is_optional": "${optional}"}`);
|
|
78740
|
+
}
|
|
78741
|
+
methods.push(`"${m.getName().toUpperCase()}": {"visibility": "${this.mapVisibility(m.getVisibility())}", "parameters": {${parameters.join(", ")}}}`);
|
|
78742
|
+
}
|
|
78743
|
+
return methods;
|
|
78744
|
+
}
|
|
78745
|
+
mapVisibility(vis) {
|
|
78746
|
+
switch (vis) {
|
|
78747
|
+
case abaplint.Visibility.Private:
|
|
78748
|
+
return "I";
|
|
78749
|
+
case abaplint.Visibility.Protected:
|
|
78750
|
+
return "O";
|
|
78751
|
+
default:
|
|
78752
|
+
return "U";
|
|
78753
|
+
}
|
|
78754
|
+
}
|
|
78590
78755
|
buildAttributes(def, scope, prefix = "") {
|
|
78591
78756
|
var _a, _b;
|
|
78592
78757
|
const attr = [];
|
|
@@ -78595,17 +78760,7 @@ class Traversal {
|
|
|
78595
78760
|
}
|
|
78596
78761
|
for (const a of ((_a = def.getAttributes()) === null || _a === void 0 ? void 0 : _a.getAll()) || []) {
|
|
78597
78762
|
const type = new transpile_types_1.TranspileTypes().toType(a.getType());
|
|
78598
|
-
|
|
78599
|
-
switch (a.getVisibility()) {
|
|
78600
|
-
case abaplint.Visibility.Private:
|
|
78601
|
-
runtime = "I";
|
|
78602
|
-
break;
|
|
78603
|
-
case abaplint.Visibility.Protected:
|
|
78604
|
-
runtime = "O";
|
|
78605
|
-
break;
|
|
78606
|
-
default:
|
|
78607
|
-
runtime = "U";
|
|
78608
|
-
}
|
|
78763
|
+
const runtime = this.mapVisibility(a.getVisibility());
|
|
78609
78764
|
const isClass = a.getMeta().includes("static" /* abaplint.IdentifierMeta.Static */) ? "X" : " ";
|
|
78610
78765
|
attr.push(`"${prefix + a.getName().toUpperCase()}": {"type": () => {return ${type};}, "visibility": "${runtime}", "is_constant": " ", "is_class": "${isClass}"}`);
|
|
78611
78766
|
}
|
|
@@ -88497,81 +88652,81 @@ module.exports = toNumber
|
|
|
88497
88652
|
"use strict";
|
|
88498
88653
|
__webpack_require__.r(__webpack_exports__);
|
|
88499
88654
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
88500
|
-
/* harmony export */
|
|
88501
|
-
/* harmony export */
|
|
88502
|
-
/* harmony export */
|
|
88503
|
-
/* harmony export */
|
|
88504
|
-
/* harmony export */
|
|
88505
|
-
/* harmony export */
|
|
88506
|
-
/* harmony export */
|
|
88507
|
-
/* harmony export */
|
|
88508
|
-
/* harmony export */
|
|
88509
|
-
/* harmony export */
|
|
88510
|
-
/* harmony export */
|
|
88511
|
-
/* harmony export */
|
|
88512
|
-
/* harmony export */
|
|
88513
|
-
/* harmony export */
|
|
88514
|
-
/* harmony export */
|
|
88515
|
-
/* harmony export */
|
|
88516
|
-
/* harmony export */
|
|
88517
|
-
/* harmony export */
|
|
88518
|
-
/* harmony export */
|
|
88519
|
-
/* harmony export */
|
|
88520
|
-
/* harmony export */
|
|
88521
|
-
/* harmony export */
|
|
88522
|
-
/* harmony export */
|
|
88523
|
-
/* harmony export */
|
|
88524
|
-
/* harmony export */
|
|
88525
|
-
/* harmony export */
|
|
88526
|
-
/* harmony export */
|
|
88527
|
-
/* harmony export */
|
|
88528
|
-
/* harmony export */
|
|
88529
|
-
/* harmony export */
|
|
88530
|
-
/* harmony export */
|
|
88531
|
-
/* harmony export */
|
|
88532
|
-
/* harmony export */
|
|
88533
|
-
/* harmony export */
|
|
88534
|
-
/* harmony export */
|
|
88535
|
-
/* harmony export */
|
|
88536
|
-
/* harmony export */
|
|
88537
|
-
/* harmony export */
|
|
88538
|
-
/* harmony export */
|
|
88539
|
-
/* harmony export */
|
|
88540
|
-
/* harmony export */
|
|
88541
|
-
/* harmony export */
|
|
88542
|
-
/* harmony export */
|
|
88543
|
-
/* harmony export */
|
|
88544
|
-
/* harmony export */
|
|
88545
|
-
/* harmony export */
|
|
88546
|
-
/* harmony export */
|
|
88547
|
-
/* harmony export */
|
|
88548
|
-
/* harmony export */
|
|
88549
|
-
/* harmony export */
|
|
88550
|
-
/* harmony export */
|
|
88551
|
-
/* harmony export */
|
|
88552
|
-
/* harmony export */
|
|
88553
|
-
/* harmony export */
|
|
88554
|
-
/* harmony export */
|
|
88555
|
-
/* harmony export */
|
|
88556
|
-
/* harmony export */
|
|
88557
|
-
/* harmony export */
|
|
88558
|
-
/* harmony export */
|
|
88559
|
-
/* harmony export */
|
|
88560
|
-
/* harmony export */
|
|
88561
|
-
/* harmony export */
|
|
88562
|
-
/* harmony export */
|
|
88563
|
-
/* harmony export */
|
|
88564
|
-
/* harmony export */
|
|
88565
|
-
/* harmony export */
|
|
88566
|
-
/* harmony export */
|
|
88567
|
-
/* harmony export */
|
|
88568
|
-
/* harmony export */
|
|
88569
|
-
/* harmony export */
|
|
88570
|
-
/* harmony export */
|
|
88571
|
-
/* harmony export */
|
|
88572
|
-
/* harmony export */
|
|
88573
|
-
/* harmony export */
|
|
88574
|
-
/* harmony export */
|
|
88655
|
+
/* harmony export */ AnnotatedTextEdit: () => (/* binding */ AnnotatedTextEdit),
|
|
88656
|
+
/* harmony export */ ChangeAnnotation: () => (/* binding */ ChangeAnnotation),
|
|
88657
|
+
/* harmony export */ ChangeAnnotationIdentifier: () => (/* binding */ ChangeAnnotationIdentifier),
|
|
88658
|
+
/* harmony export */ CodeAction: () => (/* binding */ CodeAction),
|
|
88659
|
+
/* harmony export */ CodeActionContext: () => (/* binding */ CodeActionContext),
|
|
88660
|
+
/* harmony export */ CodeActionKind: () => (/* binding */ CodeActionKind),
|
|
88661
|
+
/* harmony export */ CodeActionTriggerKind: () => (/* binding */ CodeActionTriggerKind),
|
|
88662
|
+
/* harmony export */ CodeDescription: () => (/* binding */ CodeDescription),
|
|
88663
|
+
/* harmony export */ CodeLens: () => (/* binding */ CodeLens),
|
|
88664
|
+
/* harmony export */ Color: () => (/* binding */ Color),
|
|
88665
|
+
/* harmony export */ ColorInformation: () => (/* binding */ ColorInformation),
|
|
88666
|
+
/* harmony export */ ColorPresentation: () => (/* binding */ ColorPresentation),
|
|
88667
|
+
/* harmony export */ Command: () => (/* binding */ Command),
|
|
88668
|
+
/* harmony export */ CompletionItem: () => (/* binding */ CompletionItem),
|
|
88669
|
+
/* harmony export */ CompletionItemKind: () => (/* binding */ CompletionItemKind),
|
|
88670
|
+
/* harmony export */ CompletionItemLabelDetails: () => (/* binding */ CompletionItemLabelDetails),
|
|
88671
|
+
/* harmony export */ CompletionItemTag: () => (/* binding */ CompletionItemTag),
|
|
88672
|
+
/* harmony export */ CompletionList: () => (/* binding */ CompletionList),
|
|
88673
|
+
/* harmony export */ CreateFile: () => (/* binding */ CreateFile),
|
|
88674
|
+
/* harmony export */ DeleteFile: () => (/* binding */ DeleteFile),
|
|
88675
|
+
/* harmony export */ Diagnostic: () => (/* binding */ Diagnostic),
|
|
88676
|
+
/* harmony export */ DiagnosticRelatedInformation: () => (/* binding */ DiagnosticRelatedInformation),
|
|
88677
|
+
/* harmony export */ DiagnosticSeverity: () => (/* binding */ DiagnosticSeverity),
|
|
88678
|
+
/* harmony export */ DiagnosticTag: () => (/* binding */ DiagnosticTag),
|
|
88679
|
+
/* harmony export */ DocumentHighlight: () => (/* binding */ DocumentHighlight),
|
|
88680
|
+
/* harmony export */ DocumentHighlightKind: () => (/* binding */ DocumentHighlightKind),
|
|
88681
|
+
/* harmony export */ DocumentLink: () => (/* binding */ DocumentLink),
|
|
88682
|
+
/* harmony export */ DocumentSymbol: () => (/* binding */ DocumentSymbol),
|
|
88683
|
+
/* harmony export */ DocumentUri: () => (/* binding */ DocumentUri),
|
|
88684
|
+
/* harmony export */ EOL: () => (/* binding */ EOL),
|
|
88685
|
+
/* harmony export */ FoldingRange: () => (/* binding */ FoldingRange),
|
|
88686
|
+
/* harmony export */ FoldingRangeKind: () => (/* binding */ FoldingRangeKind),
|
|
88687
|
+
/* harmony export */ FormattingOptions: () => (/* binding */ FormattingOptions),
|
|
88688
|
+
/* harmony export */ Hover: () => (/* binding */ Hover),
|
|
88689
|
+
/* harmony export */ InlayHint: () => (/* binding */ InlayHint),
|
|
88690
|
+
/* harmony export */ InlayHintKind: () => (/* binding */ InlayHintKind),
|
|
88691
|
+
/* harmony export */ InlayHintLabelPart: () => (/* binding */ InlayHintLabelPart),
|
|
88692
|
+
/* harmony export */ InlineValueContext: () => (/* binding */ InlineValueContext),
|
|
88693
|
+
/* harmony export */ InlineValueEvaluatableExpression: () => (/* binding */ InlineValueEvaluatableExpression),
|
|
88694
|
+
/* harmony export */ InlineValueText: () => (/* binding */ InlineValueText),
|
|
88695
|
+
/* harmony export */ InlineValueVariableLookup: () => (/* binding */ InlineValueVariableLookup),
|
|
88696
|
+
/* harmony export */ InsertReplaceEdit: () => (/* binding */ InsertReplaceEdit),
|
|
88697
|
+
/* harmony export */ InsertTextFormat: () => (/* binding */ InsertTextFormat),
|
|
88698
|
+
/* harmony export */ InsertTextMode: () => (/* binding */ InsertTextMode),
|
|
88699
|
+
/* harmony export */ Location: () => (/* binding */ Location),
|
|
88700
|
+
/* harmony export */ LocationLink: () => (/* binding */ LocationLink),
|
|
88701
|
+
/* harmony export */ MarkedString: () => (/* binding */ MarkedString),
|
|
88702
|
+
/* harmony export */ MarkupContent: () => (/* binding */ MarkupContent),
|
|
88703
|
+
/* harmony export */ MarkupKind: () => (/* binding */ MarkupKind),
|
|
88704
|
+
/* harmony export */ OptionalVersionedTextDocumentIdentifier: () => (/* binding */ OptionalVersionedTextDocumentIdentifier),
|
|
88705
|
+
/* harmony export */ ParameterInformation: () => (/* binding */ ParameterInformation),
|
|
88706
|
+
/* harmony export */ Position: () => (/* binding */ Position),
|
|
88707
|
+
/* harmony export */ Range: () => (/* binding */ Range),
|
|
88708
|
+
/* harmony export */ RenameFile: () => (/* binding */ RenameFile),
|
|
88709
|
+
/* harmony export */ SelectionRange: () => (/* binding */ SelectionRange),
|
|
88710
|
+
/* harmony export */ SemanticTokenModifiers: () => (/* binding */ SemanticTokenModifiers),
|
|
88711
|
+
/* harmony export */ SemanticTokenTypes: () => (/* binding */ SemanticTokenTypes),
|
|
88712
|
+
/* harmony export */ SemanticTokens: () => (/* binding */ SemanticTokens),
|
|
88713
|
+
/* harmony export */ SignatureInformation: () => (/* binding */ SignatureInformation),
|
|
88714
|
+
/* harmony export */ SymbolInformation: () => (/* binding */ SymbolInformation),
|
|
88715
|
+
/* harmony export */ SymbolKind: () => (/* binding */ SymbolKind),
|
|
88716
|
+
/* harmony export */ SymbolTag: () => (/* binding */ SymbolTag),
|
|
88717
|
+
/* harmony export */ TextDocument: () => (/* binding */ TextDocument),
|
|
88718
|
+
/* harmony export */ TextDocumentEdit: () => (/* binding */ TextDocumentEdit),
|
|
88719
|
+
/* harmony export */ TextDocumentIdentifier: () => (/* binding */ TextDocumentIdentifier),
|
|
88720
|
+
/* harmony export */ TextDocumentItem: () => (/* binding */ TextDocumentItem),
|
|
88721
|
+
/* harmony export */ TextEdit: () => (/* binding */ TextEdit),
|
|
88722
|
+
/* harmony export */ URI: () => (/* binding */ URI),
|
|
88723
|
+
/* harmony export */ VersionedTextDocumentIdentifier: () => (/* binding */ VersionedTextDocumentIdentifier),
|
|
88724
|
+
/* harmony export */ WorkspaceChange: () => (/* binding */ WorkspaceChange),
|
|
88725
|
+
/* harmony export */ WorkspaceEdit: () => (/* binding */ WorkspaceEdit),
|
|
88726
|
+
/* harmony export */ WorkspaceFolder: () => (/* binding */ WorkspaceFolder),
|
|
88727
|
+
/* harmony export */ WorkspaceSymbol: () => (/* binding */ WorkspaceSymbol),
|
|
88728
|
+
/* harmony export */ integer: () => (/* binding */ integer),
|
|
88729
|
+
/* harmony export */ uinteger: () => (/* binding */ uinteger)
|
|
88575
88730
|
/* harmony export */ });
|
|
88576
88731
|
/* --------------------------------------------------------------------------------------------
|
|
88577
88732
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.3",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"author": "abaplint",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@abaplint/transpiler": "^2.7.
|
|
29
|
+
"@abaplint/transpiler": "^2.7.3",
|
|
30
30
|
"@types/glob": "^7.2.0",
|
|
31
31
|
"glob": "=7.2.0",
|
|
32
32
|
"@types/progress": "^2.0.5",
|
|
33
|
-
"@types/node": "^20.1
|
|
33
|
+
"@types/node": "^20.2.1",
|
|
34
34
|
"@abaplint/core": "^2.100.3",
|
|
35
35
|
"progress": "^2.0.3",
|
|
36
|
-
"webpack": "^5.
|
|
36
|
+
"webpack": "^5.83.1",
|
|
37
37
|
"webpack-cli": "^5.1.1",
|
|
38
38
|
"typescript": "^5.0.4"
|
|
39
39
|
}
|