@abaplint/transpiler-cli 2.4.20 → 2.4.22
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 +64 -58
- 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.
|
|
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
|
-
|
|
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() {
|
|
@@ -86061,7 +86067,7 @@ var uinteger;
|
|
|
86061
86067
|
})(uinteger || (uinteger = {}));
|
|
86062
86068
|
/**
|
|
86063
86069
|
* The Position namespace provides helper functions to work with
|
|
86064
|
-
*
|
|
86070
|
+
* {@link Position} literals.
|
|
86065
86071
|
*/
|
|
86066
86072
|
var Position;
|
|
86067
86073
|
(function (Position) {
|
|
@@ -86081,7 +86087,7 @@ var Position;
|
|
|
86081
86087
|
}
|
|
86082
86088
|
Position.create = create;
|
|
86083
86089
|
/**
|
|
86084
|
-
* Checks whether the given literal conforms to the
|
|
86090
|
+
* Checks whether the given literal conforms to the {@link Position} interface.
|
|
86085
86091
|
*/
|
|
86086
86092
|
function is(value) {
|
|
86087
86093
|
var candidate = value;
|
|
@@ -86091,7 +86097,7 @@ var Position;
|
|
|
86091
86097
|
})(Position || (Position = {}));
|
|
86092
86098
|
/**
|
|
86093
86099
|
* The Range namespace provides helper functions to work with
|
|
86094
|
-
*
|
|
86100
|
+
* {@link Range} literals.
|
|
86095
86101
|
*/
|
|
86096
86102
|
var Range;
|
|
86097
86103
|
(function (Range) {
|
|
@@ -86108,7 +86114,7 @@ var Range;
|
|
|
86108
86114
|
}
|
|
86109
86115
|
Range.create = create;
|
|
86110
86116
|
/**
|
|
86111
|
-
* Checks whether the given literal conforms to the
|
|
86117
|
+
* Checks whether the given literal conforms to the {@link Range} interface.
|
|
86112
86118
|
*/
|
|
86113
86119
|
function is(value) {
|
|
86114
86120
|
var candidate = value;
|
|
@@ -86118,7 +86124,7 @@ var Range;
|
|
|
86118
86124
|
})(Range || (Range = {}));
|
|
86119
86125
|
/**
|
|
86120
86126
|
* The Location namespace provides helper functions to work with
|
|
86121
|
-
*
|
|
86127
|
+
* {@link Location} literals.
|
|
86122
86128
|
*/
|
|
86123
86129
|
var Location;
|
|
86124
86130
|
(function (Location) {
|
|
@@ -86132,7 +86138,7 @@ var Location;
|
|
|
86132
86138
|
}
|
|
86133
86139
|
Location.create = create;
|
|
86134
86140
|
/**
|
|
86135
|
-
* Checks whether the given literal conforms to the
|
|
86141
|
+
* Checks whether the given literal conforms to the {@link Location} interface.
|
|
86136
86142
|
*/
|
|
86137
86143
|
function is(value) {
|
|
86138
86144
|
var candidate = value;
|
|
@@ -86142,7 +86148,7 @@ var Location;
|
|
|
86142
86148
|
})(Location || (Location = {}));
|
|
86143
86149
|
/**
|
|
86144
86150
|
* The LocationLink namespace provides helper functions to work with
|
|
86145
|
-
*
|
|
86151
|
+
* {@link LocationLink} literals.
|
|
86146
86152
|
*/
|
|
86147
86153
|
var LocationLink;
|
|
86148
86154
|
(function (LocationLink) {
|
|
@@ -86158,7 +86164,7 @@ var LocationLink;
|
|
|
86158
86164
|
}
|
|
86159
86165
|
LocationLink.create = create;
|
|
86160
86166
|
/**
|
|
86161
|
-
* Checks whether the given literal conforms to the
|
|
86167
|
+
* Checks whether the given literal conforms to the {@link LocationLink} interface.
|
|
86162
86168
|
*/
|
|
86163
86169
|
function is(value) {
|
|
86164
86170
|
var candidate = value;
|
|
@@ -86170,7 +86176,7 @@ var LocationLink;
|
|
|
86170
86176
|
})(LocationLink || (LocationLink = {}));
|
|
86171
86177
|
/**
|
|
86172
86178
|
* The Color namespace provides helper functions to work with
|
|
86173
|
-
*
|
|
86179
|
+
* {@link Color} literals.
|
|
86174
86180
|
*/
|
|
86175
86181
|
var Color;
|
|
86176
86182
|
(function (Color) {
|
|
@@ -86187,7 +86193,7 @@ var Color;
|
|
|
86187
86193
|
}
|
|
86188
86194
|
Color.create = create;
|
|
86189
86195
|
/**
|
|
86190
|
-
* Checks whether the given literal conforms to the
|
|
86196
|
+
* Checks whether the given literal conforms to the {@link Color} interface.
|
|
86191
86197
|
*/
|
|
86192
86198
|
function is(value) {
|
|
86193
86199
|
var candidate = value;
|
|
@@ -86200,7 +86206,7 @@ var Color;
|
|
|
86200
86206
|
})(Color || (Color = {}));
|
|
86201
86207
|
/**
|
|
86202
86208
|
* The ColorInformation namespace provides helper functions to work with
|
|
86203
|
-
*
|
|
86209
|
+
* {@link ColorInformation} literals.
|
|
86204
86210
|
*/
|
|
86205
86211
|
var ColorInformation;
|
|
86206
86212
|
(function (ColorInformation) {
|
|
@@ -86215,7 +86221,7 @@ var ColorInformation;
|
|
|
86215
86221
|
}
|
|
86216
86222
|
ColorInformation.create = create;
|
|
86217
86223
|
/**
|
|
86218
|
-
* Checks whether the given literal conforms to the
|
|
86224
|
+
* Checks whether the given literal conforms to the {@link ColorInformation} interface.
|
|
86219
86225
|
*/
|
|
86220
86226
|
function is(value) {
|
|
86221
86227
|
var candidate = value;
|
|
@@ -86225,7 +86231,7 @@ var ColorInformation;
|
|
|
86225
86231
|
})(ColorInformation || (ColorInformation = {}));
|
|
86226
86232
|
/**
|
|
86227
86233
|
* The Color namespace provides helper functions to work with
|
|
86228
|
-
*
|
|
86234
|
+
* {@link ColorPresentation} literals.
|
|
86229
86235
|
*/
|
|
86230
86236
|
var ColorPresentation;
|
|
86231
86237
|
(function (ColorPresentation) {
|
|
@@ -86241,7 +86247,7 @@ var ColorPresentation;
|
|
|
86241
86247
|
}
|
|
86242
86248
|
ColorPresentation.create = create;
|
|
86243
86249
|
/**
|
|
86244
|
-
* Checks whether the given literal conforms to the
|
|
86250
|
+
* Checks whether the given literal conforms to the {@link ColorInformation} interface.
|
|
86245
86251
|
*/
|
|
86246
86252
|
function is(value) {
|
|
86247
86253
|
var candidate = value;
|
|
@@ -86271,7 +86277,7 @@ var FoldingRangeKind;
|
|
|
86271
86277
|
})(FoldingRangeKind || (FoldingRangeKind = {}));
|
|
86272
86278
|
/**
|
|
86273
86279
|
* The folding range namespace provides helper functions to work with
|
|
86274
|
-
*
|
|
86280
|
+
* {@link FoldingRange} literals.
|
|
86275
86281
|
*/
|
|
86276
86282
|
var FoldingRange;
|
|
86277
86283
|
(function (FoldingRange) {
|
|
@@ -86299,7 +86305,7 @@ var FoldingRange;
|
|
|
86299
86305
|
}
|
|
86300
86306
|
FoldingRange.create = create;
|
|
86301
86307
|
/**
|
|
86302
|
-
* Checks whether the given literal conforms to the
|
|
86308
|
+
* Checks whether the given literal conforms to the {@link FoldingRange} interface.
|
|
86303
86309
|
*/
|
|
86304
86310
|
function is(value) {
|
|
86305
86311
|
var candidate = value;
|
|
@@ -86312,7 +86318,7 @@ var FoldingRange;
|
|
|
86312
86318
|
})(FoldingRange || (FoldingRange = {}));
|
|
86313
86319
|
/**
|
|
86314
86320
|
* The DiagnosticRelatedInformation namespace provides helper functions to work with
|
|
86315
|
-
*
|
|
86321
|
+
* {@link DiagnosticRelatedInformation} literals.
|
|
86316
86322
|
*/
|
|
86317
86323
|
var DiagnosticRelatedInformation;
|
|
86318
86324
|
(function (DiagnosticRelatedInformation) {
|
|
@@ -86327,7 +86333,7 @@ var DiagnosticRelatedInformation;
|
|
|
86327
86333
|
}
|
|
86328
86334
|
DiagnosticRelatedInformation.create = create;
|
|
86329
86335
|
/**
|
|
86330
|
-
* Checks whether the given literal conforms to the
|
|
86336
|
+
* Checks whether the given literal conforms to the {@link DiagnosticRelatedInformation} interface.
|
|
86331
86337
|
*/
|
|
86332
86338
|
function is(value) {
|
|
86333
86339
|
var candidate = value;
|
|
@@ -86393,7 +86399,7 @@ var CodeDescription;
|
|
|
86393
86399
|
})(CodeDescription || (CodeDescription = {}));
|
|
86394
86400
|
/**
|
|
86395
86401
|
* The Diagnostic namespace provides helper functions to work with
|
|
86396
|
-
*
|
|
86402
|
+
* {@link Diagnostic} literals.
|
|
86397
86403
|
*/
|
|
86398
86404
|
var Diagnostic;
|
|
86399
86405
|
(function (Diagnostic) {
|
|
@@ -86418,7 +86424,7 @@ var Diagnostic;
|
|
|
86418
86424
|
}
|
|
86419
86425
|
Diagnostic.create = create;
|
|
86420
86426
|
/**
|
|
86421
|
-
* Checks whether the given literal conforms to the
|
|
86427
|
+
* Checks whether the given literal conforms to the {@link Diagnostic} interface.
|
|
86422
86428
|
*/
|
|
86423
86429
|
function is(value) {
|
|
86424
86430
|
var _a;
|
|
@@ -86436,7 +86442,7 @@ var Diagnostic;
|
|
|
86436
86442
|
})(Diagnostic || (Diagnostic = {}));
|
|
86437
86443
|
/**
|
|
86438
86444
|
* The Command namespace provides helper functions to work with
|
|
86439
|
-
*
|
|
86445
|
+
* {@link Command} literals.
|
|
86440
86446
|
*/
|
|
86441
86447
|
var Command;
|
|
86442
86448
|
(function (Command) {
|
|
@@ -86456,7 +86462,7 @@ var Command;
|
|
|
86456
86462
|
}
|
|
86457
86463
|
Command.create = create;
|
|
86458
86464
|
/**
|
|
86459
|
-
* Checks whether the given literal conforms to the
|
|
86465
|
+
* Checks whether the given literal conforms to the {@link Command} interface.
|
|
86460
86466
|
*/
|
|
86461
86467
|
function is(value) {
|
|
86462
86468
|
var candidate = value;
|
|
@@ -86838,7 +86844,7 @@ var WorkspaceChange = /** @class */ (function () {
|
|
|
86838
86844
|
}
|
|
86839
86845
|
Object.defineProperty(WorkspaceChange.prototype, "edit", {
|
|
86840
86846
|
/**
|
|
86841
|
-
* Returns the underlying
|
|
86847
|
+
* Returns the underlying {@link WorkspaceEdit} literal
|
|
86842
86848
|
* use to be returned from a workspace edit operation like rename.
|
|
86843
86849
|
*/
|
|
86844
86850
|
get: function () {
|
|
@@ -86986,7 +86992,7 @@ var WorkspaceChange = /** @class */ (function () {
|
|
|
86986
86992
|
|
|
86987
86993
|
/**
|
|
86988
86994
|
* The TextDocumentIdentifier namespace provides helper functions to work with
|
|
86989
|
-
*
|
|
86995
|
+
* {@link TextDocumentIdentifier} literals.
|
|
86990
86996
|
*/
|
|
86991
86997
|
var TextDocumentIdentifier;
|
|
86992
86998
|
(function (TextDocumentIdentifier) {
|
|
@@ -86999,7 +87005,7 @@ var TextDocumentIdentifier;
|
|
|
86999
87005
|
}
|
|
87000
87006
|
TextDocumentIdentifier.create = create;
|
|
87001
87007
|
/**
|
|
87002
|
-
* Checks whether the given literal conforms to the
|
|
87008
|
+
* Checks whether the given literal conforms to the {@link TextDocumentIdentifier} interface.
|
|
87003
87009
|
*/
|
|
87004
87010
|
function is(value) {
|
|
87005
87011
|
var candidate = value;
|
|
@@ -87009,7 +87015,7 @@ var TextDocumentIdentifier;
|
|
|
87009
87015
|
})(TextDocumentIdentifier || (TextDocumentIdentifier = {}));
|
|
87010
87016
|
/**
|
|
87011
87017
|
* The VersionedTextDocumentIdentifier namespace provides helper functions to work with
|
|
87012
|
-
*
|
|
87018
|
+
* {@link VersionedTextDocumentIdentifier} literals.
|
|
87013
87019
|
*/
|
|
87014
87020
|
var VersionedTextDocumentIdentifier;
|
|
87015
87021
|
(function (VersionedTextDocumentIdentifier) {
|
|
@@ -87023,7 +87029,7 @@ var VersionedTextDocumentIdentifier;
|
|
|
87023
87029
|
}
|
|
87024
87030
|
VersionedTextDocumentIdentifier.create = create;
|
|
87025
87031
|
/**
|
|
87026
|
-
* Checks whether the given literal conforms to the
|
|
87032
|
+
* Checks whether the given literal conforms to the {@link VersionedTextDocumentIdentifier} interface.
|
|
87027
87033
|
*/
|
|
87028
87034
|
function is(value) {
|
|
87029
87035
|
var candidate = value;
|
|
@@ -87033,7 +87039,7 @@ var VersionedTextDocumentIdentifier;
|
|
|
87033
87039
|
})(VersionedTextDocumentIdentifier || (VersionedTextDocumentIdentifier = {}));
|
|
87034
87040
|
/**
|
|
87035
87041
|
* The OptionalVersionedTextDocumentIdentifier namespace provides helper functions to work with
|
|
87036
|
-
*
|
|
87042
|
+
* {@link OptionalVersionedTextDocumentIdentifier} literals.
|
|
87037
87043
|
*/
|
|
87038
87044
|
var OptionalVersionedTextDocumentIdentifier;
|
|
87039
87045
|
(function (OptionalVersionedTextDocumentIdentifier) {
|
|
@@ -87047,7 +87053,7 @@ var OptionalVersionedTextDocumentIdentifier;
|
|
|
87047
87053
|
}
|
|
87048
87054
|
OptionalVersionedTextDocumentIdentifier.create = create;
|
|
87049
87055
|
/**
|
|
87050
|
-
* Checks whether the given literal conforms to the
|
|
87056
|
+
* Checks whether the given literal conforms to the {@link OptionalVersionedTextDocumentIdentifier} interface.
|
|
87051
87057
|
*/
|
|
87052
87058
|
function is(value) {
|
|
87053
87059
|
var candidate = value;
|
|
@@ -87057,7 +87063,7 @@ var OptionalVersionedTextDocumentIdentifier;
|
|
|
87057
87063
|
})(OptionalVersionedTextDocumentIdentifier || (OptionalVersionedTextDocumentIdentifier = {}));
|
|
87058
87064
|
/**
|
|
87059
87065
|
* The TextDocumentItem namespace provides helper functions to work with
|
|
87060
|
-
*
|
|
87066
|
+
* {@link TextDocumentItem} literals.
|
|
87061
87067
|
*/
|
|
87062
87068
|
var TextDocumentItem;
|
|
87063
87069
|
(function (TextDocumentItem) {
|
|
@@ -87073,7 +87079,7 @@ var TextDocumentItem;
|
|
|
87073
87079
|
}
|
|
87074
87080
|
TextDocumentItem.create = create;
|
|
87075
87081
|
/**
|
|
87076
|
-
* Checks whether the given literal conforms to the
|
|
87082
|
+
* Checks whether the given literal conforms to the {@link TextDocumentItem} interface.
|
|
87077
87083
|
*/
|
|
87078
87084
|
function is(value) {
|
|
87079
87085
|
var candidate = value;
|
|
@@ -87099,7 +87105,7 @@ var MarkupKind;
|
|
|
87099
87105
|
*/
|
|
87100
87106
|
MarkupKind.Markdown = 'markdown';
|
|
87101
87107
|
/**
|
|
87102
|
-
* Checks whether the given value is a value of the
|
|
87108
|
+
* Checks whether the given value is a value of the {@link MarkupKind} type.
|
|
87103
87109
|
*/
|
|
87104
87110
|
function is(value) {
|
|
87105
87111
|
var candidate = value;
|
|
@@ -87110,7 +87116,7 @@ var MarkupKind;
|
|
|
87110
87116
|
var MarkupContent;
|
|
87111
87117
|
(function (MarkupContent) {
|
|
87112
87118
|
/**
|
|
87113
|
-
* Checks whether the given value conforms to the
|
|
87119
|
+
* Checks whether the given value conforms to the {@link MarkupContent} interface.
|
|
87114
87120
|
*/
|
|
87115
87121
|
function is(value) {
|
|
87116
87122
|
var candidate = value;
|
|
@@ -87199,7 +87205,7 @@ var InsertReplaceEdit;
|
|
|
87199
87205
|
}
|
|
87200
87206
|
InsertReplaceEdit.create = create;
|
|
87201
87207
|
/**
|
|
87202
|
-
* Checks whether the given literal conforms to the
|
|
87208
|
+
* Checks whether the given literal conforms to the {@link InsertReplaceEdit} interface.
|
|
87203
87209
|
*/
|
|
87204
87210
|
function is(value) {
|
|
87205
87211
|
var candidate = value;
|
|
@@ -87287,7 +87293,7 @@ var MarkedString;
|
|
|
87287
87293
|
}
|
|
87288
87294
|
MarkedString.fromPlainText = fromPlainText;
|
|
87289
87295
|
/**
|
|
87290
|
-
* Checks whether the given value conforms to the
|
|
87296
|
+
* Checks whether the given value conforms to the {@link MarkedString} type.
|
|
87291
87297
|
*/
|
|
87292
87298
|
function is(value) {
|
|
87293
87299
|
var candidate = value;
|
|
@@ -87298,7 +87304,7 @@ var MarkedString;
|
|
|
87298
87304
|
var Hover;
|
|
87299
87305
|
(function (Hover) {
|
|
87300
87306
|
/**
|
|
87301
|
-
* Checks whether the given value conforms to the
|
|
87307
|
+
* Checks whether the given value conforms to the {@link Hover} interface.
|
|
87302
87308
|
*/
|
|
87303
87309
|
function is(value) {
|
|
87304
87310
|
var candidate = value;
|
|
@@ -87310,7 +87316,7 @@ var Hover;
|
|
|
87310
87316
|
})(Hover || (Hover = {}));
|
|
87311
87317
|
/**
|
|
87312
87318
|
* The ParameterInformation namespace provides helper functions to work with
|
|
87313
|
-
*
|
|
87319
|
+
* {@link ParameterInformation} literals.
|
|
87314
87320
|
*/
|
|
87315
87321
|
var ParameterInformation;
|
|
87316
87322
|
(function (ParameterInformation) {
|
|
@@ -87327,7 +87333,7 @@ var ParameterInformation;
|
|
|
87327
87333
|
})(ParameterInformation || (ParameterInformation = {}));
|
|
87328
87334
|
/**
|
|
87329
87335
|
* The SignatureInformation namespace provides helper functions to work with
|
|
87330
|
-
*
|
|
87336
|
+
* {@link SignatureInformation} literals.
|
|
87331
87337
|
*/
|
|
87332
87338
|
var SignatureInformation;
|
|
87333
87339
|
(function (SignatureInformation) {
|
|
@@ -87370,7 +87376,7 @@ var DocumentHighlightKind;
|
|
|
87370
87376
|
})(DocumentHighlightKind || (DocumentHighlightKind = {}));
|
|
87371
87377
|
/**
|
|
87372
87378
|
* DocumentHighlight namespace to provide helper functions to work with
|
|
87373
|
-
*
|
|
87379
|
+
* {@link DocumentHighlight} literals.
|
|
87374
87380
|
*/
|
|
87375
87381
|
var DocumentHighlight;
|
|
87376
87382
|
(function (DocumentHighlight) {
|
|
@@ -87501,7 +87507,7 @@ var DocumentSymbol;
|
|
|
87501
87507
|
}
|
|
87502
87508
|
DocumentSymbol.create = create;
|
|
87503
87509
|
/**
|
|
87504
|
-
* Checks whether the given literal conforms to the
|
|
87510
|
+
* Checks whether the given literal conforms to the {@link DocumentSymbol} interface.
|
|
87505
87511
|
*/
|
|
87506
87512
|
function is(value) {
|
|
87507
87513
|
var candidate = value;
|
|
@@ -87609,7 +87615,7 @@ var CodeActionTriggerKind;
|
|
|
87609
87615
|
})(CodeActionTriggerKind || (CodeActionTriggerKind = {}));
|
|
87610
87616
|
/**
|
|
87611
87617
|
* The CodeActionContext namespace provides helper functions to work with
|
|
87612
|
-
*
|
|
87618
|
+
* {@link CodeActionContext} literals.
|
|
87613
87619
|
*/
|
|
87614
87620
|
var CodeActionContext;
|
|
87615
87621
|
(function (CodeActionContext) {
|
|
@@ -87628,7 +87634,7 @@ var CodeActionContext;
|
|
|
87628
87634
|
}
|
|
87629
87635
|
CodeActionContext.create = create;
|
|
87630
87636
|
/**
|
|
87631
|
-
* Checks whether the given literal conforms to the
|
|
87637
|
+
* Checks whether the given literal conforms to the {@link CodeActionContext} interface.
|
|
87632
87638
|
*/
|
|
87633
87639
|
function is(value) {
|
|
87634
87640
|
var candidate = value;
|
|
@@ -87673,7 +87679,7 @@ var CodeAction;
|
|
|
87673
87679
|
})(CodeAction || (CodeAction = {}));
|
|
87674
87680
|
/**
|
|
87675
87681
|
* The CodeLens namespace provides helper functions to work with
|
|
87676
|
-
*
|
|
87682
|
+
* {@link CodeLens} literals.
|
|
87677
87683
|
*/
|
|
87678
87684
|
var CodeLens;
|
|
87679
87685
|
(function (CodeLens) {
|
|
@@ -87689,7 +87695,7 @@ var CodeLens;
|
|
|
87689
87695
|
}
|
|
87690
87696
|
CodeLens.create = create;
|
|
87691
87697
|
/**
|
|
87692
|
-
* Checks whether the given literal conforms to the
|
|
87698
|
+
* Checks whether the given literal conforms to the {@link CodeLens} interface.
|
|
87693
87699
|
*/
|
|
87694
87700
|
function is(value) {
|
|
87695
87701
|
var candidate = value;
|
|
@@ -87699,7 +87705,7 @@ var CodeLens;
|
|
|
87699
87705
|
})(CodeLens || (CodeLens = {}));
|
|
87700
87706
|
/**
|
|
87701
87707
|
* The FormattingOptions namespace provides helper functions to work with
|
|
87702
|
-
*
|
|
87708
|
+
* {@link FormattingOptions} literals.
|
|
87703
87709
|
*/
|
|
87704
87710
|
var FormattingOptions;
|
|
87705
87711
|
(function (FormattingOptions) {
|
|
@@ -87711,7 +87717,7 @@ var FormattingOptions;
|
|
|
87711
87717
|
}
|
|
87712
87718
|
FormattingOptions.create = create;
|
|
87713
87719
|
/**
|
|
87714
|
-
* Checks whether the given literal conforms to the
|
|
87720
|
+
* Checks whether the given literal conforms to the {@link FormattingOptions} interface.
|
|
87715
87721
|
*/
|
|
87716
87722
|
function is(value) {
|
|
87717
87723
|
var candidate = value;
|
|
@@ -87721,7 +87727,7 @@ var FormattingOptions;
|
|
|
87721
87727
|
})(FormattingOptions || (FormattingOptions = {}));
|
|
87722
87728
|
/**
|
|
87723
87729
|
* The DocumentLink namespace provides helper functions to work with
|
|
87724
|
-
*
|
|
87730
|
+
* {@link DocumentLink} literals.
|
|
87725
87731
|
*/
|
|
87726
87732
|
var DocumentLink;
|
|
87727
87733
|
(function (DocumentLink) {
|
|
@@ -87733,7 +87739,7 @@ var DocumentLink;
|
|
|
87733
87739
|
}
|
|
87734
87740
|
DocumentLink.create = create;
|
|
87735
87741
|
/**
|
|
87736
|
-
* Checks whether the given literal conforms to the
|
|
87742
|
+
* Checks whether the given literal conforms to the {@link DocumentLink} interface.
|
|
87737
87743
|
*/
|
|
87738
87744
|
function is(value) {
|
|
87739
87745
|
var candidate = value;
|
|
@@ -87898,7 +87904,7 @@ var InlineValueEvaluatableExpression;
|
|
|
87898
87904
|
})(InlineValueEvaluatableExpression || (InlineValueEvaluatableExpression = {}));
|
|
87899
87905
|
/**
|
|
87900
87906
|
* The InlineValueContext namespace provides helper functions to work with
|
|
87901
|
-
*
|
|
87907
|
+
* {@link InlineValueContext} literals.
|
|
87902
87908
|
*
|
|
87903
87909
|
* @since 3.17.0
|
|
87904
87910
|
*/
|
|
@@ -87912,7 +87918,7 @@ var InlineValueContext;
|
|
|
87912
87918
|
}
|
|
87913
87919
|
InlineValueContext.create = create;
|
|
87914
87920
|
/**
|
|
87915
|
-
* Checks whether the given literal conforms to the
|
|
87921
|
+
* Checks whether the given literal conforms to the {@link InlineValueContext} interface.
|
|
87916
87922
|
*/
|
|
87917
87923
|
function is(value) {
|
|
87918
87924
|
var candidate = value;
|
|
@@ -88003,7 +88009,7 @@ var TextDocument;
|
|
|
88003
88009
|
}
|
|
88004
88010
|
TextDocument.create = create;
|
|
88005
88011
|
/**
|
|
88006
|
-
* Checks whether the given literal conforms to the
|
|
88012
|
+
* Checks whether the given literal conforms to the {@link ITextDocument} interface.
|
|
88007
88013
|
*/
|
|
88008
88014
|
function is(value) {
|
|
88009
88015
|
var candidate = value;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.22",
|
|
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.
|
|
28
|
+
"@abaplint/transpiler": "^2.4.22",
|
|
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.
|
|
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",
|