@abaplint/transpiler-cli 2.4.21 → 2.4.23

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 +68 -59
  2. package/package.json +3 -3
package/build/bundle.js CHANGED
@@ -29703,6 +29703,7 @@ const class_data_1 = __webpack_require__(/*! ../statements/class_data */ "./node
29703
29703
  class ClassData {
29704
29704
  runSyntax(node, scope, filename) {
29705
29705
  const name = node.findFirstExpression(Expressions.NamespaceSimpleName).getFirstToken();
29706
+ const values = {};
29706
29707
  const components = [];
29707
29708
  for (const c of node.getChildren()) {
29708
29709
  const ctyp = c.get();
@@ -29710,11 +29711,12 @@ class ClassData {
29710
29711
  const found = new class_data_1.ClassData().runSyntax(c, scope, filename);
29711
29712
  if (found) {
29712
29713
  components.push({ name: found.getName(), type: found.getType() });
29714
+ values[found.getName()] = found.getValue();
29713
29715
  }
29714
29716
  }
29715
29717
  // todo, nested structures and INCLUDES
29716
29718
  }
29717
- return new _typed_identifier_1.TypedIdentifier(name, filename, new Basic.StructureType(components), ["static" /* IdentifierMeta.Static */]);
29719
+ return new _typed_identifier_1.TypedIdentifier(name, filename, new Basic.StructureType(components), ["static" /* IdentifierMeta.Static */], values);
29718
29720
  }
29719
29721
  }
29720
29722
  exports.ClassData = ClassData;
@@ -29800,6 +29802,7 @@ class Data {
29800
29802
  var _a;
29801
29803
  const name = node.findFirstExpression(Expressions.DefinitionName).getFirstToken();
29802
29804
  let table = false;
29805
+ const values = {};
29803
29806
  const components = [];
29804
29807
  for (const c of node.getChildren()) {
29805
29808
  const ctyp = c.get();
@@ -29807,6 +29810,7 @@ class Data {
29807
29810
  const found = new data_1.Data().runSyntax(c, scope, filename);
29808
29811
  if (found) {
29809
29812
  components.push({ name: found.getName(), type: found.getType() });
29813
+ values[found.getName()] = found.getValue();
29810
29814
  }
29811
29815
  }
29812
29816
  else if (c instanceof nodes_1.StructureNode && ctyp instanceof Structures.Data) {
@@ -29861,7 +29865,7 @@ class Data {
29861
29865
  return new _typed_identifier_1.TypedIdentifier(name, filename, new Basic.TableType(new Basic.StructureType(components), { withHeader: true }));
29862
29866
  }
29863
29867
  else {
29864
- return new _typed_identifier_1.TypedIdentifier(name, filename, new Basic.StructureType(components));
29868
+ return new _typed_identifier_1.TypedIdentifier(name, filename, new Basic.StructureType(components), undefined, values);
29865
29869
  }
29866
29870
  }
29867
29871
  }
@@ -33658,7 +33662,7 @@ class Attributes {
33658
33662
  if (ctyp instanceof Structures.Data) {
33659
33663
  const found = new data_2.Data().runSyntax(c, scope, this.filename);
33660
33664
  if (found !== undefined) {
33661
- const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta());
33665
+ const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta(), found.getValue());
33662
33666
  this.instance.push(attr);
33663
33667
  scope.addIdentifier(attr);
33664
33668
  }
@@ -33666,7 +33670,7 @@ class Attributes {
33666
33670
  else if (ctyp instanceof Structures.ClassData) {
33667
33671
  const found = new class_data_2.ClassData().runSyntax(c, scope, this.filename);
33668
33672
  if (found !== undefined) {
33669
- const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta());
33673
+ const attr = new class_attribute_1.ClassAttribute(found, visibility, found.getMeta(), found.getValue());
33670
33674
  this.static.push(attr);
33671
33675
  scope.addIdentifier(attr);
33672
33676
  }
@@ -45913,7 +45917,7 @@ class Registry {
45913
45917
  }
45914
45918
  static abaplintVersion() {
45915
45919
  // magic, see build script "version.sh"
45916
- return "2.95.16";
45920
+ return "2.95.18";
45917
45921
  }
45918
45922
  getDDICReferences() {
45919
45923
  return this.references;
@@ -46430,8 +46434,10 @@ class Abapdoc extends _abap_rule_1.ABAPRule {
46430
46434
  shortDescription: `Various checks regarding abapdoc.
46431
46435
  Base rule checks for existence of abapdoc for public class methods and all interface methods.
46432
46436
 
46433
- Plus class and interface definitions.`,
46434
- tags: [_irule_1.RuleTag.SingleFile],
46437
+ Plus class and interface definitions.
46438
+
46439
+ https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#abap-doc-only-for-public-apis`,
46440
+ tags: [_irule_1.RuleTag.SingleFile, _irule_1.RuleTag.Styleguide],
46435
46441
  };
46436
46442
  }
46437
46443
  getConfig() {
@@ -76720,7 +76726,10 @@ async function run() {
76720
76726
  ret += ` clas = unit.addObject("${obj.getName()}");\n`;
76721
76727
  for (const file of obj.getABAPFiles()) {
76722
76728
  for (const def of file.getInfo().listClassDefinitions()) {
76723
- if (def.isForTesting === false || def.isGlobal === true || def.methods.length === 0) {
76729
+ if (def.isForTesting === false
76730
+ || def.isGlobal === true
76731
+ || def.methods.length === 0
76732
+ || def.isAbstract === true) {
76724
76733
  // todo, fix, there might be global test methods
76725
76734
  continue;
76726
76735
  }
@@ -86061,7 +86070,7 @@ var uinteger;
86061
86070
  })(uinteger || (uinteger = {}));
86062
86071
  /**
86063
86072
  * The Position namespace provides helper functions to work with
86064
- * [Position](#Position) literals.
86073
+ * {@link Position} literals.
86065
86074
  */
86066
86075
  var Position;
86067
86076
  (function (Position) {
@@ -86081,7 +86090,7 @@ var Position;
86081
86090
  }
86082
86091
  Position.create = create;
86083
86092
  /**
86084
- * Checks whether the given literal conforms to the [Position](#Position) interface.
86093
+ * Checks whether the given literal conforms to the {@link Position} interface.
86085
86094
  */
86086
86095
  function is(value) {
86087
86096
  var candidate = value;
@@ -86091,7 +86100,7 @@ var Position;
86091
86100
  })(Position || (Position = {}));
86092
86101
  /**
86093
86102
  * The Range namespace provides helper functions to work with
86094
- * [Range](#Range) literals.
86103
+ * {@link Range} literals.
86095
86104
  */
86096
86105
  var Range;
86097
86106
  (function (Range) {
@@ -86108,7 +86117,7 @@ var Range;
86108
86117
  }
86109
86118
  Range.create = create;
86110
86119
  /**
86111
- * Checks whether the given literal conforms to the [Range](#Range) interface.
86120
+ * Checks whether the given literal conforms to the {@link Range} interface.
86112
86121
  */
86113
86122
  function is(value) {
86114
86123
  var candidate = value;
@@ -86118,7 +86127,7 @@ var Range;
86118
86127
  })(Range || (Range = {}));
86119
86128
  /**
86120
86129
  * The Location namespace provides helper functions to work with
86121
- * [Location](#Location) literals.
86130
+ * {@link Location} literals.
86122
86131
  */
86123
86132
  var Location;
86124
86133
  (function (Location) {
@@ -86132,7 +86141,7 @@ var Location;
86132
86141
  }
86133
86142
  Location.create = create;
86134
86143
  /**
86135
- * Checks whether the given literal conforms to the [Location](#Location) interface.
86144
+ * Checks whether the given literal conforms to the {@link Location} interface.
86136
86145
  */
86137
86146
  function is(value) {
86138
86147
  var candidate = value;
@@ -86142,7 +86151,7 @@ var Location;
86142
86151
  })(Location || (Location = {}));
86143
86152
  /**
86144
86153
  * The LocationLink namespace provides helper functions to work with
86145
- * [LocationLink](#LocationLink) literals.
86154
+ * {@link LocationLink} literals.
86146
86155
  */
86147
86156
  var LocationLink;
86148
86157
  (function (LocationLink) {
@@ -86158,7 +86167,7 @@ var LocationLink;
86158
86167
  }
86159
86168
  LocationLink.create = create;
86160
86169
  /**
86161
- * Checks whether the given literal conforms to the [LocationLink](#LocationLink) interface.
86170
+ * Checks whether the given literal conforms to the {@link LocationLink} interface.
86162
86171
  */
86163
86172
  function is(value) {
86164
86173
  var candidate = value;
@@ -86170,7 +86179,7 @@ var LocationLink;
86170
86179
  })(LocationLink || (LocationLink = {}));
86171
86180
  /**
86172
86181
  * The Color namespace provides helper functions to work with
86173
- * [Color](#Color) literals.
86182
+ * {@link Color} literals.
86174
86183
  */
86175
86184
  var Color;
86176
86185
  (function (Color) {
@@ -86187,7 +86196,7 @@ var Color;
86187
86196
  }
86188
86197
  Color.create = create;
86189
86198
  /**
86190
- * Checks whether the given literal conforms to the [Color](#Color) interface.
86199
+ * Checks whether the given literal conforms to the {@link Color} interface.
86191
86200
  */
86192
86201
  function is(value) {
86193
86202
  var candidate = value;
@@ -86200,7 +86209,7 @@ var Color;
86200
86209
  })(Color || (Color = {}));
86201
86210
  /**
86202
86211
  * The ColorInformation namespace provides helper functions to work with
86203
- * [ColorInformation](#ColorInformation) literals.
86212
+ * {@link ColorInformation} literals.
86204
86213
  */
86205
86214
  var ColorInformation;
86206
86215
  (function (ColorInformation) {
@@ -86215,7 +86224,7 @@ var ColorInformation;
86215
86224
  }
86216
86225
  ColorInformation.create = create;
86217
86226
  /**
86218
- * Checks whether the given literal conforms to the [ColorInformation](#ColorInformation) interface.
86227
+ * Checks whether the given literal conforms to the {@link ColorInformation} interface.
86219
86228
  */
86220
86229
  function is(value) {
86221
86230
  var candidate = value;
@@ -86225,7 +86234,7 @@ var ColorInformation;
86225
86234
  })(ColorInformation || (ColorInformation = {}));
86226
86235
  /**
86227
86236
  * The Color namespace provides helper functions to work with
86228
- * [ColorPresentation](#ColorPresentation) literals.
86237
+ * {@link ColorPresentation} literals.
86229
86238
  */
86230
86239
  var ColorPresentation;
86231
86240
  (function (ColorPresentation) {
@@ -86241,7 +86250,7 @@ var ColorPresentation;
86241
86250
  }
86242
86251
  ColorPresentation.create = create;
86243
86252
  /**
86244
- * Checks whether the given literal conforms to the [ColorInformation](#ColorInformation) interface.
86253
+ * Checks whether the given literal conforms to the {@link ColorInformation} interface.
86245
86254
  */
86246
86255
  function is(value) {
86247
86256
  var candidate = value;
@@ -86271,7 +86280,7 @@ var FoldingRangeKind;
86271
86280
  })(FoldingRangeKind || (FoldingRangeKind = {}));
86272
86281
  /**
86273
86282
  * The folding range namespace provides helper functions to work with
86274
- * [FoldingRange](#FoldingRange) literals.
86283
+ * {@link FoldingRange} literals.
86275
86284
  */
86276
86285
  var FoldingRange;
86277
86286
  (function (FoldingRange) {
@@ -86299,7 +86308,7 @@ var FoldingRange;
86299
86308
  }
86300
86309
  FoldingRange.create = create;
86301
86310
  /**
86302
- * Checks whether the given literal conforms to the [FoldingRange](#FoldingRange) interface.
86311
+ * Checks whether the given literal conforms to the {@link FoldingRange} interface.
86303
86312
  */
86304
86313
  function is(value) {
86305
86314
  var candidate = value;
@@ -86312,7 +86321,7 @@ var FoldingRange;
86312
86321
  })(FoldingRange || (FoldingRange = {}));
86313
86322
  /**
86314
86323
  * The DiagnosticRelatedInformation namespace provides helper functions to work with
86315
- * [DiagnosticRelatedInformation](#DiagnosticRelatedInformation) literals.
86324
+ * {@link DiagnosticRelatedInformation} literals.
86316
86325
  */
86317
86326
  var DiagnosticRelatedInformation;
86318
86327
  (function (DiagnosticRelatedInformation) {
@@ -86327,7 +86336,7 @@ var DiagnosticRelatedInformation;
86327
86336
  }
86328
86337
  DiagnosticRelatedInformation.create = create;
86329
86338
  /**
86330
- * Checks whether the given literal conforms to the [DiagnosticRelatedInformation](#DiagnosticRelatedInformation) interface.
86339
+ * Checks whether the given literal conforms to the {@link DiagnosticRelatedInformation} interface.
86331
86340
  */
86332
86341
  function is(value) {
86333
86342
  var candidate = value;
@@ -86393,7 +86402,7 @@ var CodeDescription;
86393
86402
  })(CodeDescription || (CodeDescription = {}));
86394
86403
  /**
86395
86404
  * The Diagnostic namespace provides helper functions to work with
86396
- * [Diagnostic](#Diagnostic) literals.
86405
+ * {@link Diagnostic} literals.
86397
86406
  */
86398
86407
  var Diagnostic;
86399
86408
  (function (Diagnostic) {
@@ -86418,7 +86427,7 @@ var Diagnostic;
86418
86427
  }
86419
86428
  Diagnostic.create = create;
86420
86429
  /**
86421
- * Checks whether the given literal conforms to the [Diagnostic](#Diagnostic) interface.
86430
+ * Checks whether the given literal conforms to the {@link Diagnostic} interface.
86422
86431
  */
86423
86432
  function is(value) {
86424
86433
  var _a;
@@ -86436,7 +86445,7 @@ var Diagnostic;
86436
86445
  })(Diagnostic || (Diagnostic = {}));
86437
86446
  /**
86438
86447
  * The Command namespace provides helper functions to work with
86439
- * [Command](#Command) literals.
86448
+ * {@link Command} literals.
86440
86449
  */
86441
86450
  var Command;
86442
86451
  (function (Command) {
@@ -86456,7 +86465,7 @@ var Command;
86456
86465
  }
86457
86466
  Command.create = create;
86458
86467
  /**
86459
- * Checks whether the given literal conforms to the [Command](#Command) interface.
86468
+ * Checks whether the given literal conforms to the {@link Command} interface.
86460
86469
  */
86461
86470
  function is(value) {
86462
86471
  var candidate = value;
@@ -86838,7 +86847,7 @@ var WorkspaceChange = /** @class */ (function () {
86838
86847
  }
86839
86848
  Object.defineProperty(WorkspaceChange.prototype, "edit", {
86840
86849
  /**
86841
- * Returns the underlying [WorkspaceEdit](#WorkspaceEdit) literal
86850
+ * Returns the underlying {@link WorkspaceEdit} literal
86842
86851
  * use to be returned from a workspace edit operation like rename.
86843
86852
  */
86844
86853
  get: function () {
@@ -86986,7 +86995,7 @@ var WorkspaceChange = /** @class */ (function () {
86986
86995
 
86987
86996
  /**
86988
86997
  * The TextDocumentIdentifier namespace provides helper functions to work with
86989
- * [TextDocumentIdentifier](#TextDocumentIdentifier) literals.
86998
+ * {@link TextDocumentIdentifier} literals.
86990
86999
  */
86991
87000
  var TextDocumentIdentifier;
86992
87001
  (function (TextDocumentIdentifier) {
@@ -86999,7 +87008,7 @@ var TextDocumentIdentifier;
86999
87008
  }
87000
87009
  TextDocumentIdentifier.create = create;
87001
87010
  /**
87002
- * Checks whether the given literal conforms to the [TextDocumentIdentifier](#TextDocumentIdentifier) interface.
87011
+ * Checks whether the given literal conforms to the {@link TextDocumentIdentifier} interface.
87003
87012
  */
87004
87013
  function is(value) {
87005
87014
  var candidate = value;
@@ -87009,7 +87018,7 @@ var TextDocumentIdentifier;
87009
87018
  })(TextDocumentIdentifier || (TextDocumentIdentifier = {}));
87010
87019
  /**
87011
87020
  * The VersionedTextDocumentIdentifier namespace provides helper functions to work with
87012
- * [VersionedTextDocumentIdentifier](#VersionedTextDocumentIdentifier) literals.
87021
+ * {@link VersionedTextDocumentIdentifier} literals.
87013
87022
  */
87014
87023
  var VersionedTextDocumentIdentifier;
87015
87024
  (function (VersionedTextDocumentIdentifier) {
@@ -87023,7 +87032,7 @@ var VersionedTextDocumentIdentifier;
87023
87032
  }
87024
87033
  VersionedTextDocumentIdentifier.create = create;
87025
87034
  /**
87026
- * Checks whether the given literal conforms to the [VersionedTextDocumentIdentifier](#VersionedTextDocumentIdentifier) interface.
87035
+ * Checks whether the given literal conforms to the {@link VersionedTextDocumentIdentifier} interface.
87027
87036
  */
87028
87037
  function is(value) {
87029
87038
  var candidate = value;
@@ -87033,7 +87042,7 @@ var VersionedTextDocumentIdentifier;
87033
87042
  })(VersionedTextDocumentIdentifier || (VersionedTextDocumentIdentifier = {}));
87034
87043
  /**
87035
87044
  * The OptionalVersionedTextDocumentIdentifier namespace provides helper functions to work with
87036
- * [OptionalVersionedTextDocumentIdentifier](#OptionalVersionedTextDocumentIdentifier) literals.
87045
+ * {@link OptionalVersionedTextDocumentIdentifier} literals.
87037
87046
  */
87038
87047
  var OptionalVersionedTextDocumentIdentifier;
87039
87048
  (function (OptionalVersionedTextDocumentIdentifier) {
@@ -87047,7 +87056,7 @@ var OptionalVersionedTextDocumentIdentifier;
87047
87056
  }
87048
87057
  OptionalVersionedTextDocumentIdentifier.create = create;
87049
87058
  /**
87050
- * Checks whether the given literal conforms to the [OptionalVersionedTextDocumentIdentifier](#OptionalVersionedTextDocumentIdentifier) interface.
87059
+ * Checks whether the given literal conforms to the {@link OptionalVersionedTextDocumentIdentifier} interface.
87051
87060
  */
87052
87061
  function is(value) {
87053
87062
  var candidate = value;
@@ -87057,7 +87066,7 @@ var OptionalVersionedTextDocumentIdentifier;
87057
87066
  })(OptionalVersionedTextDocumentIdentifier || (OptionalVersionedTextDocumentIdentifier = {}));
87058
87067
  /**
87059
87068
  * The TextDocumentItem namespace provides helper functions to work with
87060
- * [TextDocumentItem](#TextDocumentItem) literals.
87069
+ * {@link TextDocumentItem} literals.
87061
87070
  */
87062
87071
  var TextDocumentItem;
87063
87072
  (function (TextDocumentItem) {
@@ -87073,7 +87082,7 @@ var TextDocumentItem;
87073
87082
  }
87074
87083
  TextDocumentItem.create = create;
87075
87084
  /**
87076
- * Checks whether the given literal conforms to the [TextDocumentItem](#TextDocumentItem) interface.
87085
+ * Checks whether the given literal conforms to the {@link TextDocumentItem} interface.
87077
87086
  */
87078
87087
  function is(value) {
87079
87088
  var candidate = value;
@@ -87099,7 +87108,7 @@ var MarkupKind;
87099
87108
  */
87100
87109
  MarkupKind.Markdown = 'markdown';
87101
87110
  /**
87102
- * Checks whether the given value is a value of the [MarkupKind](#MarkupKind) type.
87111
+ * Checks whether the given value is a value of the {@link MarkupKind} type.
87103
87112
  */
87104
87113
  function is(value) {
87105
87114
  var candidate = value;
@@ -87110,7 +87119,7 @@ var MarkupKind;
87110
87119
  var MarkupContent;
87111
87120
  (function (MarkupContent) {
87112
87121
  /**
87113
- * Checks whether the given value conforms to the [MarkupContent](#MarkupContent) interface.
87122
+ * Checks whether the given value conforms to the {@link MarkupContent} interface.
87114
87123
  */
87115
87124
  function is(value) {
87116
87125
  var candidate = value;
@@ -87199,7 +87208,7 @@ var InsertReplaceEdit;
87199
87208
  }
87200
87209
  InsertReplaceEdit.create = create;
87201
87210
  /**
87202
- * Checks whether the given literal conforms to the [InsertReplaceEdit](#InsertReplaceEdit) interface.
87211
+ * Checks whether the given literal conforms to the {@link InsertReplaceEdit} interface.
87203
87212
  */
87204
87213
  function is(value) {
87205
87214
  var candidate = value;
@@ -87287,7 +87296,7 @@ var MarkedString;
87287
87296
  }
87288
87297
  MarkedString.fromPlainText = fromPlainText;
87289
87298
  /**
87290
- * Checks whether the given value conforms to the [MarkedString](#MarkedString) type.
87299
+ * Checks whether the given value conforms to the {@link MarkedString} type.
87291
87300
  */
87292
87301
  function is(value) {
87293
87302
  var candidate = value;
@@ -87298,7 +87307,7 @@ var MarkedString;
87298
87307
  var Hover;
87299
87308
  (function (Hover) {
87300
87309
  /**
87301
- * Checks whether the given value conforms to the [Hover](#Hover) interface.
87310
+ * Checks whether the given value conforms to the {@link Hover} interface.
87302
87311
  */
87303
87312
  function is(value) {
87304
87313
  var candidate = value;
@@ -87310,7 +87319,7 @@ var Hover;
87310
87319
  })(Hover || (Hover = {}));
87311
87320
  /**
87312
87321
  * The ParameterInformation namespace provides helper functions to work with
87313
- * [ParameterInformation](#ParameterInformation) literals.
87322
+ * {@link ParameterInformation} literals.
87314
87323
  */
87315
87324
  var ParameterInformation;
87316
87325
  (function (ParameterInformation) {
@@ -87327,7 +87336,7 @@ var ParameterInformation;
87327
87336
  })(ParameterInformation || (ParameterInformation = {}));
87328
87337
  /**
87329
87338
  * The SignatureInformation namespace provides helper functions to work with
87330
- * [SignatureInformation](#SignatureInformation) literals.
87339
+ * {@link SignatureInformation} literals.
87331
87340
  */
87332
87341
  var SignatureInformation;
87333
87342
  (function (SignatureInformation) {
@@ -87370,7 +87379,7 @@ var DocumentHighlightKind;
87370
87379
  })(DocumentHighlightKind || (DocumentHighlightKind = {}));
87371
87380
  /**
87372
87381
  * DocumentHighlight namespace to provide helper functions to work with
87373
- * [DocumentHighlight](#DocumentHighlight) literals.
87382
+ * {@link DocumentHighlight} literals.
87374
87383
  */
87375
87384
  var DocumentHighlight;
87376
87385
  (function (DocumentHighlight) {
@@ -87501,7 +87510,7 @@ var DocumentSymbol;
87501
87510
  }
87502
87511
  DocumentSymbol.create = create;
87503
87512
  /**
87504
- * Checks whether the given literal conforms to the [DocumentSymbol](#DocumentSymbol) interface.
87513
+ * Checks whether the given literal conforms to the {@link DocumentSymbol} interface.
87505
87514
  */
87506
87515
  function is(value) {
87507
87516
  var candidate = value;
@@ -87609,7 +87618,7 @@ var CodeActionTriggerKind;
87609
87618
  })(CodeActionTriggerKind || (CodeActionTriggerKind = {}));
87610
87619
  /**
87611
87620
  * The CodeActionContext namespace provides helper functions to work with
87612
- * [CodeActionContext](#CodeActionContext) literals.
87621
+ * {@link CodeActionContext} literals.
87613
87622
  */
87614
87623
  var CodeActionContext;
87615
87624
  (function (CodeActionContext) {
@@ -87628,7 +87637,7 @@ var CodeActionContext;
87628
87637
  }
87629
87638
  CodeActionContext.create = create;
87630
87639
  /**
87631
- * Checks whether the given literal conforms to the [CodeActionContext](#CodeActionContext) interface.
87640
+ * Checks whether the given literal conforms to the {@link CodeActionContext} interface.
87632
87641
  */
87633
87642
  function is(value) {
87634
87643
  var candidate = value;
@@ -87673,7 +87682,7 @@ var CodeAction;
87673
87682
  })(CodeAction || (CodeAction = {}));
87674
87683
  /**
87675
87684
  * The CodeLens namespace provides helper functions to work with
87676
- * [CodeLens](#CodeLens) literals.
87685
+ * {@link CodeLens} literals.
87677
87686
  */
87678
87687
  var CodeLens;
87679
87688
  (function (CodeLens) {
@@ -87689,7 +87698,7 @@ var CodeLens;
87689
87698
  }
87690
87699
  CodeLens.create = create;
87691
87700
  /**
87692
- * Checks whether the given literal conforms to the [CodeLens](#CodeLens) interface.
87701
+ * Checks whether the given literal conforms to the {@link CodeLens} interface.
87693
87702
  */
87694
87703
  function is(value) {
87695
87704
  var candidate = value;
@@ -87699,7 +87708,7 @@ var CodeLens;
87699
87708
  })(CodeLens || (CodeLens = {}));
87700
87709
  /**
87701
87710
  * The FormattingOptions namespace provides helper functions to work with
87702
- * [FormattingOptions](#FormattingOptions) literals.
87711
+ * {@link FormattingOptions} literals.
87703
87712
  */
87704
87713
  var FormattingOptions;
87705
87714
  (function (FormattingOptions) {
@@ -87711,7 +87720,7 @@ var FormattingOptions;
87711
87720
  }
87712
87721
  FormattingOptions.create = create;
87713
87722
  /**
87714
- * Checks whether the given literal conforms to the [FormattingOptions](#FormattingOptions) interface.
87723
+ * Checks whether the given literal conforms to the {@link FormattingOptions} interface.
87715
87724
  */
87716
87725
  function is(value) {
87717
87726
  var candidate = value;
@@ -87721,7 +87730,7 @@ var FormattingOptions;
87721
87730
  })(FormattingOptions || (FormattingOptions = {}));
87722
87731
  /**
87723
87732
  * The DocumentLink namespace provides helper functions to work with
87724
- * [DocumentLink](#DocumentLink) literals.
87733
+ * {@link DocumentLink} literals.
87725
87734
  */
87726
87735
  var DocumentLink;
87727
87736
  (function (DocumentLink) {
@@ -87733,7 +87742,7 @@ var DocumentLink;
87733
87742
  }
87734
87743
  DocumentLink.create = create;
87735
87744
  /**
87736
- * Checks whether the given literal conforms to the [DocumentLink](#DocumentLink) interface.
87745
+ * Checks whether the given literal conforms to the {@link DocumentLink} interface.
87737
87746
  */
87738
87747
  function is(value) {
87739
87748
  var candidate = value;
@@ -87898,7 +87907,7 @@ var InlineValueEvaluatableExpression;
87898
87907
  })(InlineValueEvaluatableExpression || (InlineValueEvaluatableExpression = {}));
87899
87908
  /**
87900
87909
  * The InlineValueContext namespace provides helper functions to work with
87901
- * [InlineValueContext](#InlineValueContext) literals.
87910
+ * {@link InlineValueContext} literals.
87902
87911
  *
87903
87912
  * @since 3.17.0
87904
87913
  */
@@ -87912,7 +87921,7 @@ var InlineValueContext;
87912
87921
  }
87913
87922
  InlineValueContext.create = create;
87914
87923
  /**
87915
- * Checks whether the given literal conforms to the [InlineValueContext](#InlineValueContext) interface.
87924
+ * Checks whether the given literal conforms to the {@link InlineValueContext} interface.
87916
87925
  */
87917
87926
  function is(value) {
87918
87927
  var candidate = value;
@@ -88003,7 +88012,7 @@ var TextDocument;
88003
88012
  }
88004
88013
  TextDocument.create = create;
88005
88014
  /**
88006
- * Checks whether the given literal conforms to the [ITextDocument](#ITextDocument) interface.
88015
+ * Checks whether the given literal conforms to the {@link ITextDocument} interface.
88007
88016
  */
88008
88017
  function is(value) {
88009
88018
  var candidate = value;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler-cli",
3
- "version": "2.4.21",
3
+ "version": "2.4.23",
4
4
  "description": "Transpiler - Command Line Interface",
5
5
  "bin": {
6
6
  "abap_transpile": "./abap_transpile"
@@ -25,11 +25,11 @@
25
25
  "author": "abaplint",
26
26
  "license": "MIT",
27
27
  "devDependencies": {
28
- "@abaplint/transpiler": "^2.4.21",
28
+ "@abaplint/transpiler": "^2.4.23",
29
29
  "@types/glob": "^7.2.0",
30
30
  "glob": "=7.2.0",
31
31
  "@types/progress": "^2.0.5",
32
- "@abaplint/core": "^2.95.16",
32
+ "@abaplint/core": "^2.95.18",
33
33
  "progress": "^2.0.3",
34
34
  "webpack": "^5.75.0",
35
35
  "webpack-cli": "^5.0.1",