@abaplint/transpiler-cli 2.7.1 → 2.7.2

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.
Files changed (2) hide show
  1. package/build/bundle.js +245 -90
  2. 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: ["todo"],
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 ('MANDT', 'CCCATEGORY', 'CCNOCLIIND') VALUES ('123', '', '');`;
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 ('SPRSL', 'ARBGB', 'MSGNR', 'TEXT') VALUES ('E', '${msag.getName().padEnd(20, " ")}', '${m.getNumber()}', '${this.escape(m.getMessage().padEnd(73, " "))}');\n`;
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")}};`, node, traversal);
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
- let runtime = "";
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 */ "AnnotatedTextEdit": () => (/* binding */ AnnotatedTextEdit),
88501
- /* harmony export */ "ChangeAnnotation": () => (/* binding */ ChangeAnnotation),
88502
- /* harmony export */ "ChangeAnnotationIdentifier": () => (/* binding */ ChangeAnnotationIdentifier),
88503
- /* harmony export */ "CodeAction": () => (/* binding */ CodeAction),
88504
- /* harmony export */ "CodeActionContext": () => (/* binding */ CodeActionContext),
88505
- /* harmony export */ "CodeActionKind": () => (/* binding */ CodeActionKind),
88506
- /* harmony export */ "CodeActionTriggerKind": () => (/* binding */ CodeActionTriggerKind),
88507
- /* harmony export */ "CodeDescription": () => (/* binding */ CodeDescription),
88508
- /* harmony export */ "CodeLens": () => (/* binding */ CodeLens),
88509
- /* harmony export */ "Color": () => (/* binding */ Color),
88510
- /* harmony export */ "ColorInformation": () => (/* binding */ ColorInformation),
88511
- /* harmony export */ "ColorPresentation": () => (/* binding */ ColorPresentation),
88512
- /* harmony export */ "Command": () => (/* binding */ Command),
88513
- /* harmony export */ "CompletionItem": () => (/* binding */ CompletionItem),
88514
- /* harmony export */ "CompletionItemKind": () => (/* binding */ CompletionItemKind),
88515
- /* harmony export */ "CompletionItemLabelDetails": () => (/* binding */ CompletionItemLabelDetails),
88516
- /* harmony export */ "CompletionItemTag": () => (/* binding */ CompletionItemTag),
88517
- /* harmony export */ "CompletionList": () => (/* binding */ CompletionList),
88518
- /* harmony export */ "CreateFile": () => (/* binding */ CreateFile),
88519
- /* harmony export */ "DeleteFile": () => (/* binding */ DeleteFile),
88520
- /* harmony export */ "Diagnostic": () => (/* binding */ Diagnostic),
88521
- /* harmony export */ "DiagnosticRelatedInformation": () => (/* binding */ DiagnosticRelatedInformation),
88522
- /* harmony export */ "DiagnosticSeverity": () => (/* binding */ DiagnosticSeverity),
88523
- /* harmony export */ "DiagnosticTag": () => (/* binding */ DiagnosticTag),
88524
- /* harmony export */ "DocumentHighlight": () => (/* binding */ DocumentHighlight),
88525
- /* harmony export */ "DocumentHighlightKind": () => (/* binding */ DocumentHighlightKind),
88526
- /* harmony export */ "DocumentLink": () => (/* binding */ DocumentLink),
88527
- /* harmony export */ "DocumentSymbol": () => (/* binding */ DocumentSymbol),
88528
- /* harmony export */ "DocumentUri": () => (/* binding */ DocumentUri),
88529
- /* harmony export */ "EOL": () => (/* binding */ EOL),
88530
- /* harmony export */ "FoldingRange": () => (/* binding */ FoldingRange),
88531
- /* harmony export */ "FoldingRangeKind": () => (/* binding */ FoldingRangeKind),
88532
- /* harmony export */ "FormattingOptions": () => (/* binding */ FormattingOptions),
88533
- /* harmony export */ "Hover": () => (/* binding */ Hover),
88534
- /* harmony export */ "InlayHint": () => (/* binding */ InlayHint),
88535
- /* harmony export */ "InlayHintKind": () => (/* binding */ InlayHintKind),
88536
- /* harmony export */ "InlayHintLabelPart": () => (/* binding */ InlayHintLabelPart),
88537
- /* harmony export */ "InlineValueContext": () => (/* binding */ InlineValueContext),
88538
- /* harmony export */ "InlineValueEvaluatableExpression": () => (/* binding */ InlineValueEvaluatableExpression),
88539
- /* harmony export */ "InlineValueText": () => (/* binding */ InlineValueText),
88540
- /* harmony export */ "InlineValueVariableLookup": () => (/* binding */ InlineValueVariableLookup),
88541
- /* harmony export */ "InsertReplaceEdit": () => (/* binding */ InsertReplaceEdit),
88542
- /* harmony export */ "InsertTextFormat": () => (/* binding */ InsertTextFormat),
88543
- /* harmony export */ "InsertTextMode": () => (/* binding */ InsertTextMode),
88544
- /* harmony export */ "Location": () => (/* binding */ Location),
88545
- /* harmony export */ "LocationLink": () => (/* binding */ LocationLink),
88546
- /* harmony export */ "MarkedString": () => (/* binding */ MarkedString),
88547
- /* harmony export */ "MarkupContent": () => (/* binding */ MarkupContent),
88548
- /* harmony export */ "MarkupKind": () => (/* binding */ MarkupKind),
88549
- /* harmony export */ "OptionalVersionedTextDocumentIdentifier": () => (/* binding */ OptionalVersionedTextDocumentIdentifier),
88550
- /* harmony export */ "ParameterInformation": () => (/* binding */ ParameterInformation),
88551
- /* harmony export */ "Position": () => (/* binding */ Position),
88552
- /* harmony export */ "Range": () => (/* binding */ Range),
88553
- /* harmony export */ "RenameFile": () => (/* binding */ RenameFile),
88554
- /* harmony export */ "SelectionRange": () => (/* binding */ SelectionRange),
88555
- /* harmony export */ "SemanticTokenModifiers": () => (/* binding */ SemanticTokenModifiers),
88556
- /* harmony export */ "SemanticTokenTypes": () => (/* binding */ SemanticTokenTypes),
88557
- /* harmony export */ "SemanticTokens": () => (/* binding */ SemanticTokens),
88558
- /* harmony export */ "SignatureInformation": () => (/* binding */ SignatureInformation),
88559
- /* harmony export */ "SymbolInformation": () => (/* binding */ SymbolInformation),
88560
- /* harmony export */ "SymbolKind": () => (/* binding */ SymbolKind),
88561
- /* harmony export */ "SymbolTag": () => (/* binding */ SymbolTag),
88562
- /* harmony export */ "TextDocument": () => (/* binding */ TextDocument),
88563
- /* harmony export */ "TextDocumentEdit": () => (/* binding */ TextDocumentEdit),
88564
- /* harmony export */ "TextDocumentIdentifier": () => (/* binding */ TextDocumentIdentifier),
88565
- /* harmony export */ "TextDocumentItem": () => (/* binding */ TextDocumentItem),
88566
- /* harmony export */ "TextEdit": () => (/* binding */ TextEdit),
88567
- /* harmony export */ "URI": () => (/* binding */ URI),
88568
- /* harmony export */ "VersionedTextDocumentIdentifier": () => (/* binding */ VersionedTextDocumentIdentifier),
88569
- /* harmony export */ "WorkspaceChange": () => (/* binding */ WorkspaceChange),
88570
- /* harmony export */ "WorkspaceEdit": () => (/* binding */ WorkspaceEdit),
88571
- /* harmony export */ "WorkspaceFolder": () => (/* binding */ WorkspaceFolder),
88572
- /* harmony export */ "WorkspaceSymbol": () => (/* binding */ WorkspaceSymbol),
88573
- /* harmony export */ "integer": () => (/* binding */ integer),
88574
- /* harmony export */ "uinteger": () => (/* binding */ uinteger)
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.1",
3
+ "version": "2.7.2",
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.1",
29
+ "@abaplint/transpiler": "^2.7.2",
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.5",
33
+ "@types/node": "^20.2.0",
34
34
  "@abaplint/core": "^2.100.3",
35
35
  "progress": "^2.0.3",
36
- "webpack": "^5.82.1",
36
+ "webpack": "^5.83.1",
37
37
  "webpack-cli": "^5.1.1",
38
38
  "typescript": "^5.0.4"
39
39
  }