@abaplint/transpiler-cli 2.13.38 → 2.13.40
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 +212 -124
- package/package.json +3 -3
- package/schema.json +0 -8
- package/tsconfig.tsbuildinfo +1 -0
package/build/bundle.js
CHANGED
|
@@ -2819,24 +2819,14 @@ class Expression {
|
|
|
2819
2819
|
for (const input of r) {
|
|
2820
2820
|
const temp = this.runnable.run([input]);
|
|
2821
2821
|
for (const t of temp) {
|
|
2822
|
-
|
|
2822
|
+
const consumed = input.remainingLength() - t.remainingLength();
|
|
2823
2823
|
if (consumed > 0) {
|
|
2824
|
-
const originalLength = t.getNodes().length;
|
|
2825
|
-
const children = [];
|
|
2826
|
-
while (consumed > 0) {
|
|
2827
|
-
const sub = t.popNode();
|
|
2828
|
-
if (sub) {
|
|
2829
|
-
children.push(sub);
|
|
2830
|
-
consumed = consumed - sub.countTokens();
|
|
2831
|
-
}
|
|
2832
|
-
}
|
|
2833
2824
|
const re = new nodes_1.ExpressionNode(this);
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2825
|
+
results.push(t.wrapConsumed(consumed, re));
|
|
2826
|
+
}
|
|
2827
|
+
else {
|
|
2828
|
+
results.push(t);
|
|
2838
2829
|
}
|
|
2839
|
-
results.push(t);
|
|
2840
2830
|
}
|
|
2841
2831
|
}
|
|
2842
2832
|
// console.dir(results);
|
|
@@ -11563,11 +11553,17 @@ class Result {
|
|
|
11563
11553
|
// nodes: matched tokens
|
|
11564
11554
|
this.tokens = tokens;
|
|
11565
11555
|
this.tokenIndex = tokenIndex;
|
|
11566
|
-
this.
|
|
11567
|
-
if (
|
|
11568
|
-
this.nodes
|
|
11556
|
+
this.nodeCount = 0;
|
|
11557
|
+
if (nodes !== undefined) {
|
|
11558
|
+
this.setNodes(nodes);
|
|
11569
11559
|
}
|
|
11570
11560
|
}
|
|
11561
|
+
static fromChain(tokens, tokenIndex, nodes, nodeCount) {
|
|
11562
|
+
const ret = new Result(tokens, tokenIndex);
|
|
11563
|
+
ret.nodes = nodes;
|
|
11564
|
+
ret.nodeCount = nodeCount;
|
|
11565
|
+
return ret;
|
|
11566
|
+
}
|
|
11571
11567
|
peek() {
|
|
11572
11568
|
return this.tokens[this.tokenIndex];
|
|
11573
11569
|
}
|
|
@@ -11575,18 +11571,54 @@ class Result {
|
|
|
11575
11571
|
return this.tokens[this.tokenIndex + offset];
|
|
11576
11572
|
}
|
|
11577
11573
|
shift(node) {
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
|
|
11574
|
+
return Result.fromChain(this.tokens, this.tokenIndex + 1, { node, previous: this.nodes }, this.nodeCount + 1);
|
|
11575
|
+
}
|
|
11576
|
+
wrapConsumed(consumedTokens, node) {
|
|
11577
|
+
let current = this.nodes;
|
|
11578
|
+
let currentCount = this.nodeCount;
|
|
11579
|
+
const children = [];
|
|
11580
|
+
while (consumedTokens > 0) {
|
|
11581
|
+
if (current === undefined) {
|
|
11582
|
+
break;
|
|
11583
|
+
}
|
|
11584
|
+
children.push(current.node);
|
|
11585
|
+
consumedTokens = consumedTokens - current.node.countTokens();
|
|
11586
|
+
current = current.previous;
|
|
11587
|
+
currentCount--;
|
|
11588
|
+
}
|
|
11589
|
+
node.setChildren(children.reverse());
|
|
11590
|
+
this.nodes = { node, previous: current };
|
|
11591
|
+
this.nodeCount = currentCount + 1;
|
|
11592
|
+
return this;
|
|
11581
11593
|
}
|
|
11582
11594
|
popNode() {
|
|
11583
|
-
|
|
11595
|
+
if (this.nodes === undefined) {
|
|
11596
|
+
return undefined;
|
|
11597
|
+
}
|
|
11598
|
+
const ret = this.nodes.node;
|
|
11599
|
+
this.nodes = this.nodes.previous;
|
|
11600
|
+
this.nodeCount--;
|
|
11601
|
+
return ret;
|
|
11584
11602
|
}
|
|
11585
11603
|
getNodes() {
|
|
11586
|
-
|
|
11604
|
+
const ret = new Array(this.nodeCount);
|
|
11605
|
+
let current = this.nodes;
|
|
11606
|
+
for (let index = this.nodeCount - 1; index >= 0; index--) {
|
|
11607
|
+
if (current === undefined) {
|
|
11608
|
+
break;
|
|
11609
|
+
}
|
|
11610
|
+
ret[index] = current.node;
|
|
11611
|
+
current = current.previous;
|
|
11612
|
+
}
|
|
11613
|
+
return ret;
|
|
11587
11614
|
}
|
|
11588
11615
|
setNodes(n) {
|
|
11589
|
-
this.nodes =
|
|
11616
|
+
this.nodes = undefined;
|
|
11617
|
+
this.nodeCount = 0;
|
|
11618
|
+
for (const node of n) {
|
|
11619
|
+
this.nodes = { node, previous: this.nodes };
|
|
11620
|
+
this.nodeCount++;
|
|
11621
|
+
}
|
|
11590
11622
|
}
|
|
11591
11623
|
getTokens() {
|
|
11592
11624
|
return this.tokens;
|
|
@@ -11851,7 +11883,9 @@ class StatementParser {
|
|
|
11851
11883
|
statement = input;
|
|
11852
11884
|
}
|
|
11853
11885
|
else if (length === 1 && lastToken instanceof tokens_1.Pragma) {
|
|
11854
|
-
|
|
11886
|
+
// special case, everything crashes if StatementNodes doesnt have children
|
|
11887
|
+
statement = new nodes_1.StatementNode(new _statement_1.Empty(), undefined, [lastToken])
|
|
11888
|
+
.setChildren(this.tokensToNodes([lastToken]));
|
|
11855
11889
|
}
|
|
11856
11890
|
}
|
|
11857
11891
|
return statement;
|
|
@@ -20240,7 +20274,7 @@ class TypeMesh {
|
|
|
20240
20274
|
const on = (0, combi_1.seq)("ON", expressions_1.NamespaceSimpleName, "=", expressions_1.NamespaceSimpleName, (0, combi_1.star)((0, combi_1.seq)("AND", expressions_1.NamespaceSimpleName, "=", expressions_1.NamespaceSimpleName)));
|
|
20241
20275
|
const using = (0, combi_1.seq)("USING KEY", expressions_1.NamespaceSimpleName);
|
|
20242
20276
|
const association = (0, combi_1.seq)("ASSOCIATION", expressions_1.NamespaceSimpleName, "TO", expressions_1.NamespaceSimpleName, (0, combi_1.plus)(on));
|
|
20243
|
-
const ret = (0, combi_1.ver)(version_1.Release.
|
|
20277
|
+
const ret = (0, combi_1.ver)(version_1.Release.v740sp05, (0, combi_1.seq)("TYPES", expressions_1.NamespaceSimpleName, "TYPE", (0, combi_1.opt)("REF TO"), expressions_1.TypeName, (0, combi_1.plus)(association), (0, combi_1.opt)(using)));
|
|
20244
20278
|
return ret;
|
|
20245
20279
|
}
|
|
20246
20280
|
}
|
|
@@ -26642,7 +26676,7 @@ class CurrentScope {
|
|
|
26642
26676
|
}
|
|
26643
26677
|
findTypePoolConstant(name) {
|
|
26644
26678
|
var _a;
|
|
26645
|
-
if (name === undefined || name.includes("_") ===
|
|
26679
|
+
if (name === undefined || name.includes("_") === false) {
|
|
26646
26680
|
return undefined;
|
|
26647
26681
|
}
|
|
26648
26682
|
const typePoolName = name.split("_")[0];
|
|
@@ -26664,7 +26698,7 @@ class CurrentScope {
|
|
|
26664
26698
|
}
|
|
26665
26699
|
findTypePoolType(name) {
|
|
26666
26700
|
var _a;
|
|
26667
|
-
if (name.includes("_") ===
|
|
26701
|
+
if (name.includes("_") === false) {
|
|
26668
26702
|
return undefined;
|
|
26669
26703
|
}
|
|
26670
26704
|
const typePoolName = name.split("_")[0];
|
|
@@ -26978,11 +27012,9 @@ class ObjectOriented {
|
|
|
26978
27012
|
findMethodInInterface(interfaceName, methodName) {
|
|
26979
27013
|
const idef = this.scope.findInterfaceDefinition(interfaceName);
|
|
26980
27014
|
if (idef) {
|
|
26981
|
-
const
|
|
26982
|
-
|
|
26983
|
-
|
|
26984
|
-
return { method, def: idef };
|
|
26985
|
-
}
|
|
27015
|
+
const method = idef.getMethodDefinitions().getByName(methodName);
|
|
27016
|
+
if (method) {
|
|
27017
|
+
return { method, def: idef };
|
|
26986
27018
|
}
|
|
26987
27019
|
return this.findMethodViaAlias(methodName, idef);
|
|
26988
27020
|
}
|
|
@@ -27204,17 +27236,14 @@ class ObjectOriented {
|
|
|
27204
27236
|
if (defs === undefined) {
|
|
27205
27237
|
return undefined;
|
|
27206
27238
|
}
|
|
27207
|
-
|
|
27208
|
-
|
|
27209
|
-
|
|
27210
|
-
return this.findMethodInSuper(def, methodName);
|
|
27211
|
-
}
|
|
27212
|
-
else {
|
|
27213
|
-
return method;
|
|
27214
|
-
}
|
|
27215
|
-
}
|
|
27239
|
+
const method = defs.getByName(methodName);
|
|
27240
|
+
if (method === undefined) {
|
|
27241
|
+
return undefined;
|
|
27216
27242
|
}
|
|
27217
|
-
|
|
27243
|
+
if (method.isRedefinition()) {
|
|
27244
|
+
return this.findMethodInSuper(def, methodName);
|
|
27245
|
+
}
|
|
27246
|
+
return method;
|
|
27218
27247
|
}
|
|
27219
27248
|
findMethodInSuper(child, methodName) {
|
|
27220
27249
|
let sup = child.getSuperClass();
|
|
@@ -27991,7 +28020,7 @@ class TypeUtils {
|
|
|
27991
28020
|
}
|
|
27992
28021
|
else if (target instanceof basic_1.XStringType) {
|
|
27993
28022
|
if (((_c = source.getAbstractTypeData()) === null || _c === void 0 ? void 0 : _c.derivedFromConstant) === true) {
|
|
27994
|
-
return
|
|
28023
|
+
return (node === null || node === void 0 ? void 0 : node.concatTokens()) !== "''";
|
|
27995
28024
|
}
|
|
27996
28025
|
return false;
|
|
27997
28026
|
}
|
|
@@ -32683,6 +32712,7 @@ const Expressions = __importStar(__webpack_require__(/*! ../../2_statements/expr
|
|
|
32683
32712
|
const _typed_identifier_1 = __webpack_require__(/*! ../../types/_typed_identifier */ "./node_modules/@abaplint/core/build/src/abap/types/_typed_identifier.js");
|
|
32684
32713
|
const basic_1 = __webpack_require__(/*! ../../types/basic */ "./node_modules/@abaplint/core/build/src/abap/types/basic/index.js");
|
|
32685
32714
|
const basic_types_1 = __webpack_require__(/*! ../basic_types */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/basic_types.js");
|
|
32715
|
+
const _syntax_input_1 = __webpack_require__(/*! ../_syntax_input */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/_syntax_input.js");
|
|
32686
32716
|
const assert_error_1 = __webpack_require__(/*! ../assert_error */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/assert_error.js");
|
|
32687
32717
|
class MethodDefReturning {
|
|
32688
32718
|
static runSyntax(node, input, meta) {
|
|
@@ -32695,8 +32725,11 @@ class MethodDefReturning {
|
|
|
32695
32725
|
throw new assert_error_1.AssertError("method_parameter.ts, unexpected structure");
|
|
32696
32726
|
}
|
|
32697
32727
|
let found = new basic_types_1.BasicTypes(input).parseType(type);
|
|
32698
|
-
|
|
32699
|
-
|
|
32728
|
+
const message = "RETURNING parameter must be fully specified";
|
|
32729
|
+
const typeText = type.concatTokens().toUpperCase();
|
|
32730
|
+
if ((found === null || found === void 0 ? void 0 : found.isGeneric()) === true || typeText === "TYPE X" || typeText === "TYPE C") {
|
|
32731
|
+
input.issues.push((0, _syntax_input_1.syntaxIssue)(input, type.getFirstToken(), message));
|
|
32732
|
+
found = new basic_1.UnknownType(message);
|
|
32700
32733
|
}
|
|
32701
32734
|
if (found) {
|
|
32702
32735
|
return new _typed_identifier_1.TypedIdentifier(name.getFirstToken(), input.filename, found, meta);
|
|
@@ -34584,6 +34617,9 @@ class Source {
|
|
|
34584
34617
|
if (context instanceof basic_1.FloatType && found instanceof basic_1.IntegerType) {
|
|
34585
34618
|
return context;
|
|
34586
34619
|
}
|
|
34620
|
+
else if (context instanceof basic_1.IntegerType && found instanceof basic_1.HexType) {
|
|
34621
|
+
return context;
|
|
34622
|
+
}
|
|
34587
34623
|
else if ((context instanceof basic_1.IntegerType || context instanceof basic_1.FloatType) && (found === null || found === void 0 ? void 0 : found.isGeneric())) {
|
|
34588
34624
|
return context;
|
|
34589
34625
|
}
|
|
@@ -39378,18 +39414,25 @@ class DeleteInternal {
|
|
|
39378
39414
|
let targetType = undefined;
|
|
39379
39415
|
const target = node.findDirectExpression(Expressions.Target);
|
|
39380
39416
|
if (target) {
|
|
39417
|
+
const targetName = target.concatTokens();
|
|
39381
39418
|
let tabl = undefined;
|
|
39382
|
-
const localVariable = input.scope.findVariable(
|
|
39419
|
+
const localVariable = input.scope.findVariable(targetName);
|
|
39383
39420
|
if (localVariable === undefined && node.getChildren().length === 5 && node.getChildren()[2].concatTokens().toUpperCase() === "FROM") {
|
|
39384
39421
|
// it might be a database table
|
|
39385
|
-
const found = (_a = input.scope.getDDIC()) === null || _a === void 0 ? void 0 : _a.lookupTableOrView(
|
|
39422
|
+
const found = (_a = input.scope.getDDIC()) === null || _a === void 0 ? void 0 : _a.lookupTableOrView(targetName);
|
|
39386
39423
|
if ((found === null || found === void 0 ? void 0 : found.object) !== undefined) {
|
|
39387
39424
|
tabl = found;
|
|
39388
39425
|
input.scope.getDDICReferences().addUsing(input.scope.getParentObj(), { object: tabl.object });
|
|
39389
39426
|
}
|
|
39390
39427
|
}
|
|
39391
39428
|
if (tabl === undefined) {
|
|
39392
|
-
|
|
39429
|
+
const ambigiousVoids = input.scope.getRegistry().getConfig().getSyntaxSetttings().ambigiousVoids || [];
|
|
39430
|
+
if (ambigiousVoids.some(name => name.toUpperCase() === targetName.toUpperCase())) {
|
|
39431
|
+
targetType = basic_1.VoidType.get(targetName);
|
|
39432
|
+
}
|
|
39433
|
+
else {
|
|
39434
|
+
targetType = target_1.Target.runSyntax(target, input);
|
|
39435
|
+
}
|
|
39393
39436
|
if (node.findDirectTokenByText("TABLE") === undefined
|
|
39394
39437
|
&& node.findDirectTokenByText("ADJACENT") === undefined
|
|
39395
39438
|
&& (node.findDirectTokenByText("FROM") || node.findDirectTokenByText("INDEX"))
|
|
@@ -51078,6 +51121,8 @@ class Attributes {
|
|
|
51078
51121
|
this.tlist = [];
|
|
51079
51122
|
this.filename = input.filename;
|
|
51080
51123
|
this.parse(node, input);
|
|
51124
|
+
this.all = this.static.concat(this.instance);
|
|
51125
|
+
this.byName = this.buildByName();
|
|
51081
51126
|
this.types = new type_definitions_1.TypeDefinitions(this.tlist);
|
|
51082
51127
|
}
|
|
51083
51128
|
getTypes() {
|
|
@@ -51090,10 +51135,7 @@ class Attributes {
|
|
|
51090
51135
|
return this.aliases;
|
|
51091
51136
|
}
|
|
51092
51137
|
getAll() {
|
|
51093
|
-
|
|
51094
|
-
res = res.concat(this.static);
|
|
51095
|
-
res = res.concat(this.instance);
|
|
51096
|
-
return res;
|
|
51138
|
+
return this.all;
|
|
51097
51139
|
}
|
|
51098
51140
|
getStaticsByVisibility(visibility) {
|
|
51099
51141
|
const attributes = [];
|
|
@@ -51128,27 +51170,29 @@ class Attributes {
|
|
|
51128
51170
|
}
|
|
51129
51171
|
return attributes;
|
|
51130
51172
|
}
|
|
51131
|
-
// todo, optimize
|
|
51132
51173
|
findByName(name) {
|
|
51133
|
-
|
|
51134
|
-
|
|
51135
|
-
|
|
51136
|
-
|
|
51137
|
-
|
|
51174
|
+
return this.byName[name.toUpperCase()];
|
|
51175
|
+
}
|
|
51176
|
+
/////////////////////////////
|
|
51177
|
+
buildByName() {
|
|
51178
|
+
const ret = {};
|
|
51179
|
+
for (const a of this.static) {
|
|
51180
|
+
ret[a.getName().toUpperCase()] = a;
|
|
51138
51181
|
}
|
|
51139
|
-
for (const a of this.
|
|
51140
|
-
|
|
51141
|
-
|
|
51182
|
+
for (const a of this.instance) {
|
|
51183
|
+
const name = a.getName().toUpperCase();
|
|
51184
|
+
if (ret[name] === undefined) {
|
|
51185
|
+
ret[name] = a;
|
|
51142
51186
|
}
|
|
51143
51187
|
}
|
|
51144
|
-
for (const a of this.
|
|
51145
|
-
|
|
51146
|
-
|
|
51188
|
+
for (const a of this.constants) {
|
|
51189
|
+
const name = a.getName().toUpperCase();
|
|
51190
|
+
if (ret[name] === undefined) {
|
|
51191
|
+
ret[name] = a;
|
|
51147
51192
|
}
|
|
51148
51193
|
}
|
|
51149
|
-
return
|
|
51194
|
+
return ret;
|
|
51150
51195
|
}
|
|
51151
|
-
/////////////////////////////
|
|
51152
51196
|
parse(node, input) {
|
|
51153
51197
|
var _a, _b;
|
|
51154
51198
|
const cdef = node.findDirectStructure(Structures.ClassDefinition);
|
|
@@ -54925,10 +54969,19 @@ class Config {
|
|
|
54925
54969
|
for (const rule of sorted) {
|
|
54926
54970
|
rules[rule.getMetadata().key] = rule.getConfig();
|
|
54927
54971
|
}
|
|
54928
|
-
const version =
|
|
54929
|
-
|
|
54930
|
-
|
|
54931
|
-
|
|
54972
|
+
const version = langVer !== undefined
|
|
54973
|
+
? {
|
|
54974
|
+
release: ver === undefined || ver === version_1.Version.Cloud
|
|
54975
|
+
? version_1.Release.Newest.name
|
|
54976
|
+
: typeof ver === "string"
|
|
54977
|
+
? (0, version_1.versionToABAPRelease)(ver).name
|
|
54978
|
+
: ver.release,
|
|
54979
|
+
language: langVer,
|
|
54980
|
+
}
|
|
54981
|
+
: ver !== null && ver !== void 0 ? ver : {
|
|
54982
|
+
release: version_1.Release.Newest.name,
|
|
54983
|
+
language: version_1.LanguageVersion.Normal,
|
|
54984
|
+
};
|
|
54932
54985
|
// defaults: dont skip anything, report everything. The user can decide to skip stuff
|
|
54933
54986
|
// its difficult to debug errors not being reported
|
|
54934
54987
|
const config = {
|
|
@@ -54953,9 +55006,9 @@ class Config {
|
|
|
54953
55006
|
}],
|
|
54954
55007
|
syntax: {
|
|
54955
55008
|
version,
|
|
54956
|
-
languageVersion: langVer,
|
|
54957
55009
|
errorNamespace: "^(Z|Y|LCL\_|TY\_|LIF\_)",
|
|
54958
55010
|
globalConstants: [],
|
|
55011
|
+
ambigiousVoids: [],
|
|
54959
55012
|
globalMacros: [],
|
|
54960
55013
|
},
|
|
54961
55014
|
rules: rules,
|
|
@@ -55006,6 +55059,12 @@ class Config {
|
|
|
55006
55059
|
// remove duplicates,
|
|
55007
55060
|
this.config.syntax.globalConstants = [...new Set(this.config.syntax.globalConstants)];
|
|
55008
55061
|
}
|
|
55062
|
+
if (this.config.syntax.ambigiousVoids === undefined) {
|
|
55063
|
+
this.config.syntax.ambigiousVoids = [];
|
|
55064
|
+
}
|
|
55065
|
+
else {
|
|
55066
|
+
this.config.syntax.ambigiousVoids = [...new Set(this.config.syntax.ambigiousVoids)];
|
|
55067
|
+
}
|
|
55009
55068
|
if (this.config.global.skipIncludesWithoutMain === undefined) {
|
|
55010
55069
|
this.config.global.skipIncludesWithoutMain = false;
|
|
55011
55070
|
}
|
|
@@ -55055,9 +55114,6 @@ class Config {
|
|
|
55055
55114
|
return v;
|
|
55056
55115
|
}
|
|
55057
55116
|
getLanguageVersion() {
|
|
55058
|
-
if (this.config.syntax.languageVersion !== undefined) {
|
|
55059
|
-
return this.config.syntax.languageVersion;
|
|
55060
|
-
}
|
|
55061
55117
|
const v = this.config.syntax.version;
|
|
55062
55118
|
if (v !== undefined && typeof v !== "string") {
|
|
55063
55119
|
return v.language;
|
|
@@ -55082,7 +55138,10 @@ class Config {
|
|
|
55082
55138
|
return;
|
|
55083
55139
|
}
|
|
55084
55140
|
if (version === version_1.Version.Cloud) {
|
|
55085
|
-
this.config.syntax.
|
|
55141
|
+
this.config.syntax.version = {
|
|
55142
|
+
release: version_1.Release.Newest.name,
|
|
55143
|
+
language: version_1.LanguageVersion.Cloud,
|
|
55144
|
+
};
|
|
55086
55145
|
}
|
|
55087
55146
|
// OpenABAP keeps its own version identity; open-abap-ness is derived from the
|
|
55088
55147
|
// release in getOpenABAP() rather than a separate stored flag.
|
|
@@ -60010,6 +60069,7 @@ function parseDynpros(parsed) {
|
|
|
60010
60069
|
fields.push({
|
|
60011
60070
|
name: f.NAME,
|
|
60012
60071
|
type: f.TYPE,
|
|
60072
|
+
contType: f.CONT_TYPE,
|
|
60013
60073
|
length: parseNumber(f.LENGTH),
|
|
60014
60074
|
vislength: parseNumber(f.VISLENGTH),
|
|
60015
60075
|
line: parseNumber(f.LINE),
|
|
@@ -61897,9 +61957,8 @@ class DataDefinition extends _abstract_object_1.AbstractObject {
|
|
|
61897
61957
|
}
|
|
61898
61958
|
if (found === undefined) {
|
|
61899
61959
|
// typed virtual element: VIRTUAL <name> : <type>
|
|
61900
|
-
|
|
61901
|
-
|
|
61902
|
-
found = names[0];
|
|
61960
|
+
if (e.findDirectTokenByText("VIRTUAL") !== undefined) {
|
|
61961
|
+
found = e.findFirstExpression(expressions_1.CDSName);
|
|
61903
61962
|
}
|
|
61904
61963
|
}
|
|
61905
61964
|
if (found === undefined) {
|
|
@@ -69191,7 +69250,7 @@ class Registry {
|
|
|
69191
69250
|
}
|
|
69192
69251
|
static abaplintVersion() {
|
|
69193
69252
|
// magic, see build script "version.js"
|
|
69194
|
-
return "2.119.
|
|
69253
|
+
return "2.119.65";
|
|
69195
69254
|
}
|
|
69196
69255
|
getDDICReferences() {
|
|
69197
69256
|
return this.ddicReferences;
|
|
@@ -71362,17 +71421,22 @@ class BeginEndNames extends _abap_rule_1.ABAPRule {
|
|
|
71362
71421
|
test(stru, type, b, e, file) {
|
|
71363
71422
|
const output = [];
|
|
71364
71423
|
for (const sub of stru.findAllStructuresRecursive(type)) {
|
|
71365
|
-
|
|
71424
|
+
const beginStatement = sub.findDirectStatement(b);
|
|
71425
|
+
const endStatement = sub.findDirectStatement(e);
|
|
71426
|
+
if (beginStatement === undefined || endStatement === undefined) {
|
|
71427
|
+
continue;
|
|
71428
|
+
}
|
|
71429
|
+
let begin = beginStatement.findFirstExpression(Expressions.NamespaceSimpleName);
|
|
71366
71430
|
if (begin === undefined) {
|
|
71367
|
-
begin =
|
|
71431
|
+
begin = beginStatement.findFirstExpression(Expressions.DefinitionName);
|
|
71368
71432
|
}
|
|
71369
71433
|
if (begin === undefined) {
|
|
71370
71434
|
continue;
|
|
71371
71435
|
}
|
|
71372
71436
|
const first = begin.getFirstToken();
|
|
71373
|
-
let end =
|
|
71437
|
+
let end = endStatement.findFirstExpression(Expressions.NamespaceSimpleName);
|
|
71374
71438
|
if (end === undefined) {
|
|
71375
|
-
end =
|
|
71439
|
+
end = endStatement.findFirstExpression(Expressions.DefinitionName);
|
|
71376
71440
|
}
|
|
71377
71441
|
if (end === undefined) {
|
|
71378
71442
|
continue;
|
|
@@ -75942,6 +76006,7 @@ Make sure to test the downported code, it might not always be completely correct
|
|
|
75942
76006
|
const lowConfig = this.lowReg.getConfig().get();
|
|
75943
76007
|
highConfig.syntax.errorNamespace = lowConfig.syntax.errorNamespace;
|
|
75944
76008
|
highConfig.syntax.globalConstants = lowConfig.syntax.globalConstants;
|
|
76009
|
+
highConfig.syntax.ambigiousVoids = lowConfig.syntax.ambigiousVoids;
|
|
75945
76010
|
highConfig.syntax.globalMacros = lowConfig.syntax.globalMacros;
|
|
75946
76011
|
this.highReg = new registry_1.Registry();
|
|
75947
76012
|
for (const o of this.lowReg.getObjects()) {
|
|
@@ -78583,7 +78648,7 @@ ${indentation} output = ${uniqueName}.\n`;
|
|
|
78583
78648
|
}
|
|
78584
78649
|
}
|
|
78585
78650
|
}
|
|
78586
|
-
if (fix === undefined
|
|
78651
|
+
if (fix === undefined) {
|
|
78587
78652
|
const found = high.findFirstExpression(Expressions.NewObject);
|
|
78588
78653
|
if (found === undefined) {
|
|
78589
78654
|
return undefined;
|
|
@@ -78757,12 +78822,13 @@ class DynproChecks {
|
|
|
78757
78822
|
const ret = [];
|
|
78758
78823
|
for (let index = 0; index < dynpro.fields.length; index++) {
|
|
78759
78824
|
const current = dynpro.fields[index];
|
|
78760
|
-
if (current.name === undefined || current.type === "FRAME") {
|
|
78825
|
+
if (current.name === undefined || current.type === "FRAME" || this.hasContainerRelativeCoordinates(current)) {
|
|
78761
78826
|
continue;
|
|
78762
78827
|
}
|
|
78763
78828
|
for (let compare = index + 1; compare < dynpro.fields.length; compare++) {
|
|
78764
78829
|
const other = dynpro.fields[compare];
|
|
78765
|
-
if (other.name === undefined || other.type === "FRAME" || this.
|
|
78830
|
+
if (other.name === undefined || other.type === "FRAME" || this.hasContainerRelativeCoordinates(other)
|
|
78831
|
+
|| this.overlaps(current, other) === false) {
|
|
78766
78832
|
continue;
|
|
78767
78833
|
}
|
|
78768
78834
|
const message = `Screen ${dynpro.number}, ${current.type} ${current.name} and ${other.type} ${other.name} are overlapping`;
|
|
@@ -78771,6 +78837,9 @@ class DynproChecks {
|
|
|
78771
78837
|
}
|
|
78772
78838
|
return ret;
|
|
78773
78839
|
}
|
|
78840
|
+
hasContainerRelativeCoordinates(field) {
|
|
78841
|
+
return field.contType === "TABLE_CTRL" || field.contType === "LOOP" || field.contType === "STRIP_CTRL";
|
|
78842
|
+
}
|
|
78774
78843
|
overlaps(first, second) {
|
|
78775
78844
|
if (first.line === 0 || second.line === 0 || first.column === 0 || second.column === 0) {
|
|
78776
78845
|
return false;
|
|
@@ -86220,7 +86289,6 @@ const Expressions = __importStar(__webpack_require__(/*! ../abap/2_statements/ex
|
|
|
86220
86289
|
const _abap_rule_1 = __webpack_require__(/*! ./_abap_rule */ "./node_modules/@abaplint/core/build/src/rules/_abap_rule.js");
|
|
86221
86290
|
const _basic_rule_config_1 = __webpack_require__(/*! ./_basic_rule_config */ "./node_modules/@abaplint/core/build/src/rules/_basic_rule_config.js");
|
|
86222
86291
|
const issue_1 = __webpack_require__(/*! ../issue */ "./node_modules/@abaplint/core/build/src/issue.js");
|
|
86223
|
-
const tokens_1 = __webpack_require__(/*! ../abap/1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
86224
86292
|
const expressions_1 = __webpack_require__(/*! ../abap/2_statements/expressions */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
86225
86293
|
const _irule_1 = __webpack_require__(/*! ./_irule */ "./node_modules/@abaplint/core/build/src/rules/_irule.js");
|
|
86226
86294
|
class NamesNoDashConf extends _basic_rule_config_1.BasicRuleConfig {
|
|
@@ -86260,32 +86328,26 @@ class NamesNoDash extends _abap_rule_1.ABAPRule {
|
|
|
86260
86328
|
if (obj.getType() !== "CLAS" && obj.getType() !== "INTF") {
|
|
86261
86329
|
for (const form of struc.findAllStatements(Statements.Form)) {
|
|
86262
86330
|
const expr = form.findFirstExpression(expressions_1.FormName);
|
|
86263
|
-
|
|
86264
|
-
|
|
86265
|
-
|
|
86266
|
-
|
|
86267
|
-
break;
|
|
86268
|
-
}
|
|
86331
|
+
const token = expr === null || expr === void 0 ? void 0 : expr.findDirectTokenByText("-");
|
|
86332
|
+
if (token) {
|
|
86333
|
+
const issue = issue_1.Issue.atToken(file, token, this.getMessage(), this.getMetadata().key, this.conf.severity);
|
|
86334
|
+
issues.push(issue);
|
|
86269
86335
|
}
|
|
86270
86336
|
}
|
|
86271
86337
|
for (const form of struc.findAllStatements(Statements.Parameter)) {
|
|
86272
86338
|
const expr = form.findFirstExpression(Expressions.FieldSub);
|
|
86273
|
-
|
|
86274
|
-
|
|
86275
|
-
|
|
86276
|
-
|
|
86277
|
-
break;
|
|
86278
|
-
}
|
|
86339
|
+
const token = expr === null || expr === void 0 ? void 0 : expr.findDirectTokenByText("-");
|
|
86340
|
+
if (token) {
|
|
86341
|
+
const issue = issue_1.Issue.atToken(file, token, this.getMessage(), this.getMetadata().key, this.conf.severity);
|
|
86342
|
+
issues.push(issue);
|
|
86279
86343
|
}
|
|
86280
86344
|
}
|
|
86281
86345
|
for (const form of struc.findAllStatements(Statements.SelectOption)) {
|
|
86282
86346
|
const expr = form.findFirstExpression(Expressions.FieldSub);
|
|
86283
|
-
|
|
86284
|
-
|
|
86285
|
-
|
|
86286
|
-
|
|
86287
|
-
break;
|
|
86288
|
-
}
|
|
86347
|
+
const token = expr === null || expr === void 0 ? void 0 : expr.findDirectTokenByText("-");
|
|
86348
|
+
if (token) {
|
|
86349
|
+
const issue = issue_1.Issue.atToken(file, token, this.getMessage(), this.getMetadata().key, this.conf.severity);
|
|
86350
|
+
issues.push(issue);
|
|
86289
86351
|
}
|
|
86290
86352
|
}
|
|
86291
86353
|
}
|
|
@@ -88387,11 +88449,11 @@ ENDIF.`,
|
|
|
88387
88449
|
}
|
|
88388
88450
|
}
|
|
88389
88451
|
else {
|
|
88390
|
-
const classNameExpression = staNode.
|
|
88391
|
-
const methodNameExpression = staNode.
|
|
88392
|
-
if (classNameExpression
|
|
88393
|
-
const className = classNameExpression
|
|
88394
|
-
const methodName = methodNameExpression
|
|
88452
|
+
const classNameExpression = staNode.findFirstExpression(Expressions.ClassName);
|
|
88453
|
+
const methodNameExpression = staNode.findFirstExpression(Expressions.MethodName);
|
|
88454
|
+
if (classNameExpression && methodNameExpression) {
|
|
88455
|
+
const className = classNameExpression.concatTokens();
|
|
88456
|
+
const methodName = methodNameExpression.concatTokens();
|
|
88395
88457
|
if (className === "cl_abap_regex") {
|
|
88396
88458
|
if (methodName === "create_posix") {
|
|
88397
88459
|
const issue = issue_1.Issue.atStatement(file, staNode, "create_posix obsolete, use create_pcre", this.getMetadata().key, this.conf.severity);
|
|
@@ -92553,12 +92615,12 @@ class ShortCase extends _abap_rule_1.ABAPRule {
|
|
|
92553
92615
|
return [];
|
|
92554
92616
|
}
|
|
92555
92617
|
for (const c of struc.findAllStructures(Structures.Case)) {
|
|
92556
|
-
const
|
|
92557
|
-
if (
|
|
92618
|
+
const caseStatement = c.findDirectStatement(Statements.Case);
|
|
92619
|
+
if (caseStatement && this.conf.allow && this.conf.allow.find((e) => { return e === caseStatement.getTokens()[1].getStr(); })) {
|
|
92558
92620
|
continue;
|
|
92559
92621
|
}
|
|
92560
92622
|
if (c.findDirectStructures(Structures.When).length <= this.conf.length) {
|
|
92561
|
-
if (c.
|
|
92623
|
+
if (c.findFirstExpression(Expressions.Or)) {
|
|
92562
92624
|
continue;
|
|
92563
92625
|
}
|
|
92564
92626
|
const issue = issue_1.Issue.atToken(file, c.getFirstToken(), this.getMessage(), this.getMetadata().key, this.conf.severity);
|
|
@@ -94382,9 +94444,9 @@ class TryWithoutCatch extends _abap_rule_1.ABAPRule {
|
|
|
94382
94444
|
}
|
|
94383
94445
|
const tries = stru.findAllStructures(structures_1.Try);
|
|
94384
94446
|
for (const t of tries) {
|
|
94385
|
-
const clean = t.
|
|
94386
|
-
const c = t.
|
|
94387
|
-
if (c
|
|
94447
|
+
const clean = t.findDirectStructure(structures_1.Cleanup);
|
|
94448
|
+
const c = t.findDirectStructure(structures_1.Catch);
|
|
94449
|
+
if (c === undefined && clean === undefined) {
|
|
94388
94450
|
const issue = issue_1.Issue.atToken(file, t.getFirstToken(), this.getMessage(), this.getMetadata().key, this.conf.severity);
|
|
94389
94451
|
issues.push(issue);
|
|
94390
94452
|
}
|
|
@@ -95293,6 +95355,7 @@ const _basic_rule_config_1 = __webpack_require__(/*! ./_basic_rule_config */ "./
|
|
|
95293
95355
|
const _statement_1 = __webpack_require__(/*! ../abap/2_statements/statements/_statement */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/_statement.js");
|
|
95294
95356
|
const _irule_1 = __webpack_require__(/*! ./_irule */ "./node_modules/@abaplint/core/build/src/rules/_irule.js");
|
|
95295
95357
|
const edit_helper_1 = __webpack_require__(/*! ../edit_helper */ "./node_modules/@abaplint/core/build/src/edit_helper.js");
|
|
95358
|
+
const tokens_1 = __webpack_require__(/*! ../abap/1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
95296
95359
|
class UnnecessaryPragmaConf extends _basic_rule_config_1.BasicRuleConfig {
|
|
95297
95360
|
constructor() {
|
|
95298
95361
|
super(...arguments);
|
|
@@ -95361,6 +95424,17 @@ DATA: BEGIN OF blah ##NEEDED,
|
|
|
95361
95424
|
for (let i = 0; i < statements.length; i++) {
|
|
95362
95425
|
const statement = statements[i];
|
|
95363
95426
|
const nextStatement = statements[i + 1];
|
|
95427
|
+
if (statement.get() instanceof _statement_1.Empty
|
|
95428
|
+
&& statement.getChildren().length === 1) {
|
|
95429
|
+
const tokens = statement.getTokens();
|
|
95430
|
+
if (tokens.length === 1
|
|
95431
|
+
&& tokens[0] instanceof tokens_1.Pragma) {
|
|
95432
|
+
const message = "Pragma without a statement can be removed";
|
|
95433
|
+
const fix = edit_helper_1.EditHelper.deleteToken(file, tokens[0]);
|
|
95434
|
+
issues.push(issue_1.Issue.atToken(file, tokens[0], message, this.getMetadata().key, this.conf.severity, fix));
|
|
95435
|
+
continue;
|
|
95436
|
+
}
|
|
95437
|
+
}
|
|
95364
95438
|
if (statement.get() instanceof Statements.EndTry) {
|
|
95365
95439
|
noHandler = false;
|
|
95366
95440
|
}
|
|
@@ -98074,9 +98148,11 @@ const include_graph_1 = __webpack_require__(/*! ./utils/include_graph */ "./node
|
|
|
98074
98148
|
class SkipLogic {
|
|
98075
98149
|
constructor(reg) {
|
|
98076
98150
|
this.reg = reg;
|
|
98151
|
+
this.includeGraph = undefined;
|
|
98077
98152
|
this.tobj = undefined;
|
|
98078
98153
|
}
|
|
98079
98154
|
skip(obj) {
|
|
98155
|
+
var _a;
|
|
98080
98156
|
const global = this.reg.getConfig().getGlobal();
|
|
98081
98157
|
if (global.skipGeneratedGatewayClasses === true
|
|
98082
98158
|
&& obj instanceof objects_1.Class
|
|
@@ -98086,9 +98162,9 @@ class SkipLogic {
|
|
|
98086
98162
|
else if (global.skipIncludesWithoutMain === true
|
|
98087
98163
|
&& obj instanceof objects_1.Program
|
|
98088
98164
|
&& obj.isInclude() === true) {
|
|
98089
|
-
|
|
98165
|
+
(_a = this.includeGraph) !== null && _a !== void 0 ? _a : (this.includeGraph = new include_graph_1.IncludeGraph(this.reg));
|
|
98090
98166
|
const file = obj.getMainABAPFile();
|
|
98091
|
-
if (file &&
|
|
98167
|
+
if (file && this.includeGraph.listMainForInclude(file.getFilename()).length === 0) {
|
|
98092
98168
|
return true;
|
|
98093
98169
|
}
|
|
98094
98170
|
}
|
|
@@ -108833,6 +108909,9 @@ class ConcatenateTranspiler {
|
|
|
108833
108909
|
if (concat.includes(" RESPECTING BLANKS")) {
|
|
108834
108910
|
extra += ", respectingBlanks: true";
|
|
108835
108911
|
}
|
|
108912
|
+
if (concat.includes(" IN BYTE MODE")) {
|
|
108913
|
+
extra += ", byteMode: true";
|
|
108914
|
+
}
|
|
108836
108915
|
const target = traversal.traverse(node.findDirectExpression(abaplint.Expressions.Target));
|
|
108837
108916
|
return new chunk_1.Chunk()
|
|
108838
108917
|
.append("abap.statements.concatenate({source: [", node, traversal)
|
|
@@ -114034,7 +114113,6 @@ exports.ReturnTranspiler = void 0;
|
|
|
114034
114113
|
const abaplint = __importStar(__webpack_require__(/*! @abaplint/core */ "./node_modules/@abaplint/core/build/src/index.js"));
|
|
114035
114114
|
const traversal_1 = __webpack_require__(/*! ../traversal */ "./node_modules/@abaplint/transpiler/build/src/traversal.js");
|
|
114036
114115
|
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
114037
|
-
const unique_identifier_1 = __webpack_require__(/*! ../unique_identifier */ "./node_modules/@abaplint/transpiler/build/src/unique_identifier.js");
|
|
114038
114116
|
class ReturnTranspiler {
|
|
114039
114117
|
transpile(node, traversal) {
|
|
114040
114118
|
const source = node.findDirectExpression(abaplint.Expressions.Source);
|
|
@@ -114048,8 +114126,9 @@ class ReturnTranspiler {
|
|
|
114048
114126
|
}
|
|
114049
114127
|
}
|
|
114050
114128
|
let pre = "";
|
|
114051
|
-
|
|
114052
|
-
|
|
114129
|
+
const syIndexBackup = traversal.findCurrentDoOrWhileIndexBackup(node);
|
|
114130
|
+
if (syIndexBackup !== undefined) {
|
|
114131
|
+
pre = `abap.builtin.sy.get().index.set(${syIndexBackup});\n`;
|
|
114053
114132
|
}
|
|
114054
114133
|
if (scope?.getIdentifier().stype === abaplint.ScopeType.Method
|
|
114055
114134
|
&& scope?.getIdentifier().sname.toLowerCase() === "constructor") {
|
|
@@ -117033,6 +117112,7 @@ class DoTranspiler {
|
|
|
117033
117112
|
const syIndexBackup = unique_identifier_1.UniqueIdentifier.getIndexBackup();
|
|
117034
117113
|
for (const c of node.getChildren()) {
|
|
117035
117114
|
if (c instanceof abaplint.Nodes.StatementNode && c.get() instanceof abaplint.Statements.Do) {
|
|
117115
|
+
traversal.registerDoOrWhileIndexBackup(c, syIndexBackup);
|
|
117036
117116
|
ret.appendChunk(new statements_1.DoTranspiler(syIndexBackup).transpile(c, traversal));
|
|
117037
117117
|
ret.appendString("\n");
|
|
117038
117118
|
}
|
|
@@ -118033,6 +118113,7 @@ class WhileTranspiler {
|
|
|
118033
118113
|
const syIndexBackup = unique_identifier_1.UniqueIdentifier.getIndexBackup();
|
|
118034
118114
|
for (const c of node.getChildren()) {
|
|
118035
118115
|
if (c instanceof abaplint.Nodes.StatementNode && c.get() instanceof abaplint.Statements.While) {
|
|
118116
|
+
traversal.registerDoOrWhileIndexBackup(c, syIndexBackup);
|
|
118036
118117
|
ret.appendChunk(new statements_1.WhileTranspiler(syIndexBackup).transpile(c, traversal));
|
|
118037
118118
|
ret.appendString("\n");
|
|
118038
118119
|
}
|
|
@@ -118373,6 +118454,7 @@ class Traversal {
|
|
|
118373
118454
|
file;
|
|
118374
118455
|
obj;
|
|
118375
118456
|
sqlInferredType;
|
|
118457
|
+
doOrWhileIndexBackups = new Map();
|
|
118376
118458
|
reg;
|
|
118377
118459
|
options;
|
|
118378
118460
|
constructor(spaghetti, file, obj, reg, options) {
|
|
@@ -119105,12 +119187,18 @@ this.INTERNAL_ID = abap.internalIdCounter++;\n`;
|
|
|
119105
119187
|
return stack.length > 0;
|
|
119106
119188
|
}
|
|
119107
119189
|
isInsideDoOrWhile(node) {
|
|
119190
|
+
return this.findCurrentDoOrWhileIndexBackup(node) !== undefined;
|
|
119191
|
+
}
|
|
119192
|
+
registerDoOrWhileIndexBackup(node, name) {
|
|
119193
|
+
this.doOrWhileIndexBackups.set(node, name);
|
|
119194
|
+
}
|
|
119195
|
+
findCurrentDoOrWhileIndexBackup(node) {
|
|
119108
119196
|
const stack = [];
|
|
119109
119197
|
for (const statement of this.getFile().getStatements()) {
|
|
119110
119198
|
const get = statement.get();
|
|
119111
119199
|
if (get instanceof abaplint.Statements.While
|
|
119112
119200
|
|| get instanceof abaplint.Statements.Do) {
|
|
119113
|
-
stack.push(statement);
|
|
119201
|
+
stack.push(this.doOrWhileIndexBackups.get(statement));
|
|
119114
119202
|
}
|
|
119115
119203
|
else if (get instanceof abaplint.Statements.EndWhile
|
|
119116
119204
|
|| get instanceof abaplint.Statements.EndDo) {
|
|
@@ -119120,7 +119208,7 @@ this.INTERNAL_ID = abap.internalIdCounter++;\n`;
|
|
|
119120
119208
|
break;
|
|
119121
119209
|
}
|
|
119122
119210
|
}
|
|
119123
|
-
return stack.length
|
|
119211
|
+
return stack[stack.length - 1];
|
|
119124
119212
|
}
|
|
119125
119213
|
registerClassOrInterface(def) {
|
|
119126
119214
|
if (def === undefined) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.40",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"author": "abaplint",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@abaplint/core": "^2.119.
|
|
31
|
-
"@abaplint/transpiler": "^2.13.
|
|
30
|
+
"@abaplint/core": "^2.119.65",
|
|
31
|
+
"@abaplint/transpiler": "^2.13.40",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.12.2",
|
|
34
34
|
"@types/progress": "^2.0.7",
|
package/schema.json
CHANGED
|
@@ -76,14 +76,6 @@
|
|
|
76
76
|
"output_folder": {
|
|
77
77
|
"type": "string"
|
|
78
78
|
},
|
|
79
|
-
"plugins": {
|
|
80
|
-
"description": "list of npm module names or paths, resolved from the current working directory, each module exports \"plugins\", an array of ITranspilerPlugin instances",
|
|
81
|
-
"items": {
|
|
82
|
-
"type": "string"
|
|
83
|
-
},
|
|
84
|
-
"type": "array",
|
|
85
|
-
"uniqueItems": true
|
|
86
|
-
},
|
|
87
79
|
"write_source_map": {
|
|
88
80
|
"type": "boolean"
|
|
89
81
|
},
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.dom.asynciterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.es2025.float16.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/typescript/lib/lib.es2022.full.d.ts","./node_modules/vscode-languageserver-types/lib/umd/main.d.ts","./node_modules/@abaplint/core/build/abaplint.d.ts","./node_modules/source-map/source-map.d.ts","./node_modules/@abaplint/transpiler/build/src/chunk.d.ts","./node_modules/@abaplint/transpiler/build/src/unit_test.d.ts","./node_modules/@abaplint/transpiler/build/src/db/database_setup_result.d.ts","./node_modules/@abaplint/transpiler/build/src/types.d.ts","./node_modules/@abaplint/transpiler/build/src/validation.d.ts","./node_modules/@abaplint/transpiler/build/src/index.d.ts","./src/types.ts","./src/config.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/globals.typedarray.d.ts","./node_modules/@types/node/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/crypto.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/events.d.ts","./node_modules/undici-types/utility.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client-stats.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/h2c-client.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-call-history.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/snapshot-agent.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/undici-types/retry-handler.d.ts","./node_modules/undici-types/retry-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cache-interceptor.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/util.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/eventsource.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/web-globals/navigator.d.ts","./node_modules/@types/node/web-globals/storage.d.ts","./node_modules/@types/node/web-globals/streams.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/inspector.generated.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/sqlite.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@types/minimatch/index.d.ts","./node_modules/@types/glob/index.d.ts","./node_modules/p-limit/index.d.ts","./src/file_operations.ts","./node_modules/@types/progress/index.d.ts","./src/index.ts","../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[79,133,150,151],[66,79,133,150,151],[67,68,79,133,150,151],[67,72,73,79,133,150,151],[67,69,70,71,79,133,150,151],[67,79,133,150,151],[67,72,79,133,150,151],[79,133,144,145,150,151,183,184],[79,130,131,133,150,151],[79,132,133,150,151],[133,150,151],[79,133,138,150,151,168],[79,133,134,139,144,150,151,153,165,176],[79,133,134,135,144,150,151,153],[79,133,136,150,151,177],[79,133,137,138,145,150,151,154],[79,133,138,150,151,165,173],[79,133,139,141,144,150,151,153],[79,132,133,140,150,151],[79,133,141,142,150,151],[79,133,143,144,150,151],[79,132,133,144,150,151],[79,133,144,145,146,150,151,165,176],[79,133,144,145,146,150,151,160,165,168],[79,125,133,141,144,147,150,151,153,165,176],[79,133,144,145,147,148,150,151,153,165,173,176],[79,133,147,149,150,151,165,173,176],[77,78,79,80,81,82,83,84,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[79,133,144,150,151],[79,133,150,151,152,176],[79,133,141,144,150,151,153,165],[79,133,150,151,154],[79,133,150,151,155],[79,132,133,150,151,156],[79,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[79,133,150,151,158],[79,133,150,151,159],[79,133,144,150,151,160,161],[79,133,150,151,160,162,177,179],[79,133,145,150,151],[79,133,144,150,151,165,166,168],[79,133,150,151,167,168],[79,133,150,151,165,166],[79,133,150,151,168],[79,133,150,151,169],[79,130,133,150,151,165,170,176],[79,133,144,150,151,171,172],[79,133,150,151,171,172],[79,133,138,150,151,153,165,173],[79,133,150,151,174],[79,133,150,151,153,175],[79,133,147,150,151,159,176],[79,133,138,150,151,177],[79,133,150,151,165,178],[79,133,150,151,152,179],[79,133,150,151,180],[79,133,138,150,151],[79,125,133,150,151],[79,133,150,151,181],[79,125,133,144,146,150,151,156,165,168,176,178,179,181],[79,133,150,151,165,182],[79,133,150,151,183],[79,91,94,97,98,133,150,151,176],[79,94,133,150,151,165,176],[79,94,98,133,150,151,176],[79,133,150,151,165],[79,88,133,150,151],[79,92,133,150,151],[79,90,91,94,133,150,151,176],[79,133,150,151,153,173],[79,88,133,150,151,183],[79,90,94,133,150,151,153,176],[79,85,86,87,89,93,133,144,150,151,165,176],[79,94,102,110,133,150,151],[79,86,92,133,150,151],[79,94,119,120,133,150,151],[79,86,89,94,133,150,151,168,176,183],[79,94,133,150,151],[79,90,94,133,150,151,176],[79,85,133,150,151],[79,88,89,90,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,133,150,151],[79,94,112,115,133,141,150,151],[79,94,102,103,104,133,150,151],[79,92,94,103,105,133,150,151],[79,93,133,150,151],[79,86,88,94,133,150,151],[79,94,98,103,105,133,150,151],[79,98,133,150,151],[79,92,94,97,133,150,151,176],[79,86,90,94,102,133,150,151],[79,94,112,133,150,151],[79,105,133,150,151],[79,88,94,119,133,150,151,168,181,183],[74,75,79,133,145,150,151,155],[74,75,79,133,145,146,150,151,154,155,185,186],[67,74,75,76,79,133,134,145,150,151,154,155,185,187,188],[74,79,133,150,151]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"01a30f9e8582b369075c0808df71121e6855cb06fd8d3d39511d9ebb66405205","impliedFormat":1},{"version":"af4f042e8a99eb6f9a48411042e9633486f1eb058d9e1c769c9836cd05464489","impliedFormat":1},{"version":"b4d0053584c73bf5833bbcd9ec96d25600137c3af90bf0e69aff09afb70a741e","impliedFormat":1},{"version":"89dcbbf69b16cd94043e16c7fbcfa04256577ec98bb8ae894833d2a922394db4","impliedFormat":1},{"version":"7c0590bae81bbe21e3878be296210b76afd6c05a098bc287dbe242f38a8a852b","impliedFormat":1},{"version":"83bff103f33fa5b2bb32986e890533f95677057a836b7cf78a8202ad90a45608","impliedFormat":1},{"version":"72003eb7651e998adc17d10707d2ed12e5270c4b23edb513d0614491db91aa10","impliedFormat":1},{"version":"a9eac7528f5d68e0073a0db760c177c0e2e46c322c5a56819cc7fe82713fd156","impliedFormat":1},{"version":"314857f821f9455b2ac936919fd37752b5472ca21bb9433cc640662c81caaa4b","impliedFormat":1},{"version":"d596b83809535dbe4ce7b1c7a668e7ab4e4b8c249d5ddf7d0b1db16f5c1d7a81","impliedFormat":1},{"version":"f20028696c1a38226e42010da3031ddea24b3a418ad56a0bddbbf1a82fe8c609","signature":"3db2a08b4341f2125ba4bb3f793debb7b30932295c36871bcb138dc65115f23a"},{"version":"740d510020f3536ce50c4e341917ad27a3bb4ffeee6509f770efb5675b5896bd","signature":"e08bb6219752efcaf6119c06958e6e83b878bbb3369e1bb4aeac454836735f54"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"0904660ae854e6d41f6ff25356db1d654436c6305b0f0aa89d1532df0253486e","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"0e5974dfff7a97181c7c376545f126b20acf2f1341db7d3fccea4977bf3ce19c","impliedFormat":1},{"version":"c7f977ea78a1b060a30554c1c4ec0e2269c6e305a349ca2ada14931ac27ecc0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3806cdd6b48ba01a9198134e62a384ec217a98f316d4baef74dd46d62c947a63","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bf3fe89ec8baa335f6370b9fa36308e1bc7a72e2eb2dad1e94f31e27fa28b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"35390d6fa94bdb432c5d0bcb6547bdd11406c2692a6b90b9e47be2105ea19bd6","impliedFormat":1},{"version":"3910dab597c40e173bf0e0d419d3ce9682c54ebf6ae84849f9b829b1451a17ec","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"486c074a5c0f2254345c0d1c9540380f5463999e42d7e1a159305ea823d3c4b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"8e7c3bed5f19ade8f911677ddc83052e2283e25b0a8654cd89db9079d4b323c7","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ccf3afaeebbeee4ca9092101e99fd6abd681116b6e5ec23e381bbb1e1f32262c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"ab7818a9d57a9297b90e456fc68b77f84d74395a9210a3cfa9d87db33aff8b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb08062718a5470cd864c1fae0eb5b3a3adc5bcd05dcf87608d6f60b65eca3f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3a815b7d1aebc0646b91548eab2fc19dada09ff255d04c71ced00bbd3058c8eb","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"836b36913830645ac3b28fe33731aac3fdb3524ee8adbb4cdab9a5c189f41943","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"9f91eee81fda27d38d60963fe1de2f050a5cfb241af56b7e7ee6d9aa8522a058","impliedFormat":1},{"version":"1baaf9e01ea72170d3c74aca2d0d7acbef3eb83f776ba6e0ef0c944b454bd295","signature":"7657ae67f69f3df2efb4fc6bbebd5702f35bdb5662211626856df64bc0be41e5"},{"version":"399fc76aafc3c3e506515b7796f8a9b0ae63a40733f0b452fe949d986f1c01b7","impliedFormat":1},{"version":"4aee29034bd907cfbf0cddc8be9ebd421082a3703b509809170d97f20677a876","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[75,76,187,189],"options":{"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./build","rootDir":"./src","sourceMap":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":9,"useUnknownInCatchVariables":false},"referencedMap":[[190,1],[67,2],[69,3],[71,1],[74,4],[72,5],[70,6],[73,7],[185,8],[184,1],[130,9],[131,9],[132,10],[79,11],[133,12],[134,13],[135,14],[77,1],[136,15],[137,16],[138,17],[139,18],[140,19],[141,20],[142,20],[143,21],[144,22],[145,23],[146,24],[80,1],[78,1],[147,25],[148,26],[149,27],[183,28],[150,29],[151,1],[152,30],[153,31],[154,32],[155,33],[156,34],[157,35],[158,36],[159,37],[160,38],[161,38],[162,39],[163,1],[164,40],[165,41],[167,42],[166,43],[168,44],[169,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,56],[81,1],[82,57],[83,1],[84,1],[126,58],[127,59],[128,1],[129,44],[181,60],[182,61],[188,62],[186,1],[68,1],[63,1],[64,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[26,1],[4,1],[27,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[34,1],[5,1],[35,1],[36,1],[37,1],[38,1],[6,1],[42,1],[39,1],[40,1],[41,1],[43,1],[7,1],[44,1],[49,1],[50,1],[45,1],[46,1],[47,1],[48,1],[8,1],[54,1],[51,1],[52,1],[53,1],[55,1],[9,1],[56,1],[65,1],[57,1],[58,1],[60,1],[59,1],[61,1],[1,1],[62,1],[14,1],[13,1],[102,63],[114,64],[100,65],[115,66],[124,67],[91,68],[92,69],[90,70],[123,62],[118,71],[122,72],[94,73],[111,74],[93,75],[121,76],[88,77],[89,71],[95,78],[96,1],[101,79],[99,78],[86,80],[125,81],[116,82],[105,83],[104,78],[106,84],[109,85],[103,86],[107,87],[119,62],[97,88],[98,89],[110,90],[87,66],[113,91],[112,78],[108,92],[117,1],[85,1],[120,93],[66,1],[76,94],[187,95],[189,96],[75,97]],"version":"6.0.3"}
|