@flock/wirespec 0.17.12 → 0.17.13
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/clikt-clikt.mjs +1129 -1129
- package/colormath-root-colormath.mjs +400 -400
- package/kotlin-rgxgen.mjs +1764 -1764
- package/kotlinx-io-kotlinx-io-core.mjs +373 -373
- package/markdown.mjs +1796 -1796
- package/mordant-mordant.mjs +1531 -1531
- package/package.json +1 -1
- package/wirespec-src-compiler-core.mjs +61 -70
- package/wirespec-src-compiler-core.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-java.mjs +103 -103
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +95 -95
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +101 -101
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-typescript.mjs +73 -73
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +27 -27
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +250 -250
- package/wirespec-src-compiler-lib.mjs.map +1 -1
- package/wirespec-src-converter-avro.mjs +262 -262
- package/wirespec-src-converter-openapi.mjs +76 -76
- package/wirespec-src-converter-openapi.mjs.map +1 -1
- package/wirespec-src-plugin-arguments.mjs +116 -116
- package/wirespec-src-plugin-arguments.mjs.map +1 -1
- package/wirespec-src-plugin-cli.mjs +74 -74
- package/wirespec-src-plugin-cli.mjs.map +1 -1
- package/wirespec-src-plugin-npm.mjs +14 -14
- package/wirespec-src-plugin-npm.mjs.map +1 -1
- package/wirespec-src-tools-generator.mjs +2 -2
package/package.json
CHANGED
|
@@ -363,10 +363,10 @@ function ModuleContent(fileUri, content) {
|
|
|
363
363
|
this.a22_1 = content;
|
|
364
364
|
}
|
|
365
365
|
protoOf(ModuleContent).toString = function () {
|
|
366
|
-
return 'ModuleContent(fileUri=' +
|
|
366
|
+
return 'ModuleContent(fileUri=' + this.z21_1.toString() + ', content=' + this.a22_1 + ')';
|
|
367
367
|
};
|
|
368
368
|
protoOf(ModuleContent).hashCode = function () {
|
|
369
|
-
var result =
|
|
369
|
+
var result = this.z21_1.hashCode();
|
|
370
370
|
result = imul(result, 31) + getStringHashCode(this.a22_1) | 0;
|
|
371
371
|
return result;
|
|
372
372
|
};
|
|
@@ -376,39 +376,30 @@ protoOf(ModuleContent).equals = function (other) {
|
|
|
376
376
|
if (!(other instanceof ModuleContent))
|
|
377
377
|
return false;
|
|
378
378
|
var tmp0_other_with_cast = other instanceof ModuleContent ? other : THROW_CCE();
|
|
379
|
-
if (!
|
|
379
|
+
if (!this.z21_1.equals(tmp0_other_with_cast.z21_1))
|
|
380
380
|
return false;
|
|
381
381
|
if (!(this.a22_1 === tmp0_other_with_cast.a22_1))
|
|
382
382
|
return false;
|
|
383
383
|
return true;
|
|
384
384
|
};
|
|
385
|
-
function _FileUri___init__impl__ujwvc9(value) {
|
|
386
|
-
return value;
|
|
387
|
-
}
|
|
388
|
-
function FileUri__toString_impl_8g6evl($this) {
|
|
389
|
-
return 'FileUri(value=' + $this + ')';
|
|
390
|
-
}
|
|
391
|
-
function FileUri__hashCode_impl_dazhxa($this) {
|
|
392
|
-
return getStringHashCode($this);
|
|
393
|
-
}
|
|
394
|
-
function FileUri__equals_impl_apwd3y($this, other) {
|
|
395
|
-
if (!(other instanceof FileUri))
|
|
396
|
-
return false;
|
|
397
|
-
if (!($this === (other instanceof FileUri ? other.c22_1 : THROW_CCE())))
|
|
398
|
-
return false;
|
|
399
|
-
return true;
|
|
400
|
-
}
|
|
401
385
|
function FileUri(value) {
|
|
402
386
|
this.c22_1 = value;
|
|
403
387
|
}
|
|
404
388
|
protoOf(FileUri).toString = function () {
|
|
405
|
-
return
|
|
389
|
+
return 'FileUri(value=' + this.c22_1 + ')';
|
|
406
390
|
};
|
|
407
391
|
protoOf(FileUri).hashCode = function () {
|
|
408
|
-
return
|
|
392
|
+
return getStringHashCode(this.c22_1);
|
|
409
393
|
};
|
|
410
394
|
protoOf(FileUri).equals = function (other) {
|
|
411
|
-
|
|
395
|
+
if (this === other)
|
|
396
|
+
return true;
|
|
397
|
+
if (!(other instanceof FileUri))
|
|
398
|
+
return false;
|
|
399
|
+
var tmp0_other_with_cast = other instanceof FileUri ? other : THROW_CCE();
|
|
400
|
+
if (!(this.c22_1 === tmp0_other_with_cast.c22_1))
|
|
401
|
+
return false;
|
|
402
|
+
return true;
|
|
412
403
|
};
|
|
413
404
|
var Stage_TOKENIZED_instance;
|
|
414
405
|
var Stage_PARSED_instance;
|
|
@@ -439,10 +430,10 @@ function TokenizedModule(fileUri, tokens) {
|
|
|
439
430
|
this.n22_1 = tokens;
|
|
440
431
|
}
|
|
441
432
|
protoOf(TokenizedModule).toString = function () {
|
|
442
|
-
return 'TokenizedModule(fileUri=' +
|
|
433
|
+
return 'TokenizedModule(fileUri=' + this.m22_1.toString() + ', tokens=' + this.n22_1.toString() + ')';
|
|
443
434
|
};
|
|
444
435
|
protoOf(TokenizedModule).hashCode = function () {
|
|
445
|
-
var result =
|
|
436
|
+
var result = this.m22_1.hashCode();
|
|
446
437
|
result = imul(result, 31) + this.n22_1.hashCode() | 0;
|
|
447
438
|
return result;
|
|
448
439
|
};
|
|
@@ -452,7 +443,7 @@ protoOf(TokenizedModule).equals = function (other) {
|
|
|
452
443
|
if (!(other instanceof TokenizedModule))
|
|
453
444
|
return false;
|
|
454
445
|
var tmp0_other_with_cast = other instanceof TokenizedModule ? other : THROW_CCE();
|
|
455
|
-
if (!
|
|
446
|
+
if (!this.m22_1.equals(tmp0_other_with_cast.m22_1))
|
|
456
447
|
return false;
|
|
457
448
|
if (!this.n22_1.equals(tmp0_other_with_cast.n22_1))
|
|
458
449
|
return false;
|
|
@@ -1578,7 +1569,7 @@ function DuplicateChannelError(typeName) {
|
|
|
1578
1569
|
ValidationError.call(this, new Coordinates(), "Channel '" + typeName + "' is already defined");
|
|
1579
1570
|
}
|
|
1580
1571
|
function ValidationError(coordinates, message) {
|
|
1581
|
-
WirespecException.call(this,
|
|
1572
|
+
WirespecException.call(this, new FileUri(''), message, coordinates);
|
|
1582
1573
|
}
|
|
1583
1574
|
function WirespecException(fileUri, message, coordinates) {
|
|
1584
1575
|
this.z26_1 = fileUri;
|
|
@@ -7532,25 +7523,25 @@ function Module(fileUri, statements) {
|
|
|
7532
7523
|
this.e25_1 = fileUri;
|
|
7533
7524
|
this.f25_1 = statements;
|
|
7534
7525
|
}
|
|
7535
|
-
protoOf(Module).
|
|
7526
|
+
protoOf(Module).sd = function () {
|
|
7536
7527
|
return this.e25_1;
|
|
7537
7528
|
};
|
|
7538
7529
|
protoOf(Module).td = function () {
|
|
7539
7530
|
return this.f25_1;
|
|
7540
7531
|
};
|
|
7541
|
-
protoOf(Module).
|
|
7532
|
+
protoOf(Module).t29 = function (fileUri, statements) {
|
|
7542
7533
|
return new Module(fileUri, statements);
|
|
7543
7534
|
};
|
|
7544
|
-
protoOf(Module).
|
|
7535
|
+
protoOf(Module).u29 = function (fileUri, statements, $super) {
|
|
7545
7536
|
fileUri = fileUri === VOID ? this.e25_1 : fileUri;
|
|
7546
7537
|
statements = statements === VOID ? this.f25_1 : statements;
|
|
7547
|
-
return $super === VOID ? this.
|
|
7538
|
+
return $super === VOID ? this.t29(fileUri, statements) : $super.t29.call(this, fileUri, statements);
|
|
7548
7539
|
};
|
|
7549
7540
|
protoOf(Module).toString = function () {
|
|
7550
|
-
return 'Module(fileUri=' +
|
|
7541
|
+
return 'Module(fileUri=' + this.e25_1.toString() + ', statements=' + this.f25_1.toString() + ')';
|
|
7551
7542
|
};
|
|
7552
7543
|
protoOf(Module).hashCode = function () {
|
|
7553
|
-
var result =
|
|
7544
|
+
var result = this.e25_1.hashCode();
|
|
7554
7545
|
result = imul(result, 31) + this.f25_1.hashCode() | 0;
|
|
7555
7546
|
return result;
|
|
7556
7547
|
};
|
|
@@ -7560,7 +7551,7 @@ protoOf(Module).equals = function (other) {
|
|
|
7560
7551
|
if (!(other instanceof Module))
|
|
7561
7552
|
return false;
|
|
7562
7553
|
var tmp0_other_with_cast = other instanceof Module ? other : THROW_CCE();
|
|
7563
|
-
if (!
|
|
7554
|
+
if (!this.e25_1.equals(tmp0_other_with_cast.e25_1))
|
|
7564
7555
|
return false;
|
|
7565
7556
|
if (!this.f25_1.equals(tmp0_other_with_cast.f25_1))
|
|
7566
7557
|
return false;
|
|
@@ -7588,15 +7579,15 @@ protoOf(Root).equals = function (other) {
|
|
|
7588
7579
|
function IdxAndLength(idx, length) {
|
|
7589
7580
|
idx = idx === VOID ? 0 : idx;
|
|
7590
7581
|
length = length === VOID ? 0 : length;
|
|
7591
|
-
this.
|
|
7592
|
-
this.
|
|
7582
|
+
this.v29_1 = idx;
|
|
7583
|
+
this.w29_1 = length;
|
|
7593
7584
|
}
|
|
7594
7585
|
protoOf(IdxAndLength).toString = function () {
|
|
7595
|
-
return 'IdxAndLength(idx=' + this.
|
|
7586
|
+
return 'IdxAndLength(idx=' + this.v29_1 + ', length=' + this.w29_1 + ')';
|
|
7596
7587
|
};
|
|
7597
7588
|
protoOf(IdxAndLength).hashCode = function () {
|
|
7598
|
-
var result = this.
|
|
7599
|
-
result = imul(result, 31) + this.
|
|
7589
|
+
var result = this.v29_1;
|
|
7590
|
+
result = imul(result, 31) + this.w29_1 | 0;
|
|
7600
7591
|
return result;
|
|
7601
7592
|
};
|
|
7602
7593
|
protoOf(IdxAndLength).equals = function (other) {
|
|
@@ -7605,9 +7596,9 @@ protoOf(IdxAndLength).equals = function (other) {
|
|
|
7605
7596
|
if (!(other instanceof IdxAndLength))
|
|
7606
7597
|
return false;
|
|
7607
7598
|
var tmp0_other_with_cast = other instanceof IdxAndLength ? other : THROW_CCE();
|
|
7608
|
-
if (!(this.
|
|
7599
|
+
if (!(this.v29_1 === tmp0_other_with_cast.v29_1))
|
|
7609
7600
|
return false;
|
|
7610
|
-
if (!(this.
|
|
7601
|
+
if (!(this.w29_1 === tmp0_other_with_cast.w29_1))
|
|
7611
7602
|
return false;
|
|
7612
7603
|
return true;
|
|
7613
7604
|
};
|
|
@@ -7619,14 +7610,14 @@ function Coordinates(line, position, idxAndLength) {
|
|
|
7619
7610
|
this.x26_1 = position;
|
|
7620
7611
|
this.y26_1 = idxAndLength;
|
|
7621
7612
|
}
|
|
7622
|
-
protoOf(Coordinates).
|
|
7613
|
+
protoOf(Coordinates).x29 = function (line, position, idxAndLength) {
|
|
7623
7614
|
return new Coordinates(line, position, idxAndLength);
|
|
7624
7615
|
};
|
|
7625
|
-
protoOf(Coordinates).
|
|
7616
|
+
protoOf(Coordinates).y29 = function (line, position, idxAndLength, $super) {
|
|
7626
7617
|
line = line === VOID ? this.w26_1 : line;
|
|
7627
7618
|
position = position === VOID ? this.x26_1 : position;
|
|
7628
7619
|
idxAndLength = idxAndLength === VOID ? this.y26_1 : idxAndLength;
|
|
7629
|
-
return $super === VOID ? this.
|
|
7620
|
+
return $super === VOID ? this.x29(line, position, idxAndLength) : $super.x29.call(this, line, position, idxAndLength);
|
|
7630
7621
|
};
|
|
7631
7622
|
protoOf(Coordinates).toString = function () {
|
|
7632
7623
|
return 'Coordinates(line=' + this.w26_1 + ', position=' + this.x26_1 + ', idxAndLength=' + this.y26_1.toString() + ')';
|
|
@@ -7656,14 +7647,14 @@ function Token(value, type, coordinates) {
|
|
|
7656
7647
|
this.u26_1 = type;
|
|
7657
7648
|
this.v26_1 = coordinates;
|
|
7658
7649
|
}
|
|
7659
|
-
protoOf(Token).
|
|
7650
|
+
protoOf(Token).z29 = function (value, type, coordinates) {
|
|
7660
7651
|
return new Token(value, type, coordinates);
|
|
7661
7652
|
};
|
|
7662
|
-
protoOf(Token).
|
|
7653
|
+
protoOf(Token).a2a = function (value, type, coordinates, $super) {
|
|
7663
7654
|
value = value === VOID ? this.t26_1 : value;
|
|
7664
7655
|
type = type === VOID ? this.u26_1 : type;
|
|
7665
7656
|
coordinates = coordinates === VOID ? this.v26_1 : coordinates;
|
|
7666
|
-
return $super === VOID ? this.
|
|
7657
|
+
return $super === VOID ? this.z29(value, type, coordinates) : $super.z29.call(this, value, type, coordinates);
|
|
7667
7658
|
};
|
|
7668
7659
|
protoOf(Token).toString = function () {
|
|
7669
7660
|
return 'Token(value=' + this.t26_1 + ', type=' + toString(this.u26_1) + ', coordinates=' + this.v26_1.toString() + ')';
|
|
@@ -7689,10 +7680,10 @@ protoOf(Token).equals = function (other) {
|
|
|
7689
7680
|
return true;
|
|
7690
7681
|
};
|
|
7691
7682
|
function plus_2(_this__u8e3s4, length) {
|
|
7692
|
-
return new IdxAndLength(_this__u8e3s4.
|
|
7683
|
+
return new IdxAndLength(_this__u8e3s4.v29_1 + length | 0, length);
|
|
7693
7684
|
}
|
|
7694
7685
|
function plus_3(_this__u8e3s4, length) {
|
|
7695
|
-
return _this__u8e3s4.
|
|
7686
|
+
return _this__u8e3s4.y29(VOID, _this__u8e3s4.x26_1 + length | 0, plus_2(_this__u8e3s4.y26_1, length));
|
|
7696
7687
|
}
|
|
7697
7688
|
function StartOfProgram() {
|
|
7698
7689
|
}
|
|
@@ -7721,7 +7712,7 @@ function SpecificType() {
|
|
|
7721
7712
|
function TypeIdentifier() {
|
|
7722
7713
|
}
|
|
7723
7714
|
function EndOfProgram() {
|
|
7724
|
-
this.
|
|
7715
|
+
this.b2a_1 = 'EOP';
|
|
7725
7716
|
}
|
|
7726
7717
|
protoOf(EndOfProgram).toString = function () {
|
|
7727
7718
|
return 'EndOfProgram';
|
|
@@ -8647,17 +8638,17 @@ function TokenizeOptions(removeWhitespace, specifyTypes, specifyFieldIdentifiers
|
|
|
8647
8638
|
removeWhitespace = removeWhitespace === VOID ? true : removeWhitespace;
|
|
8648
8639
|
specifyTypes = specifyTypes === VOID ? true : specifyTypes;
|
|
8649
8640
|
specifyFieldIdentifiers = specifyFieldIdentifiers === VOID ? true : specifyFieldIdentifiers;
|
|
8650
|
-
this.
|
|
8651
|
-
this.
|
|
8652
|
-
this.
|
|
8641
|
+
this.c2a_1 = removeWhitespace;
|
|
8642
|
+
this.d2a_1 = specifyTypes;
|
|
8643
|
+
this.e2a_1 = specifyFieldIdentifiers;
|
|
8653
8644
|
}
|
|
8654
8645
|
protoOf(TokenizeOptions).toString = function () {
|
|
8655
|
-
return 'TokenizeOptions(removeWhitespace=' + this.
|
|
8646
|
+
return 'TokenizeOptions(removeWhitespace=' + this.c2a_1 + ', specifyTypes=' + this.d2a_1 + ', specifyFieldIdentifiers=' + this.e2a_1 + ')';
|
|
8656
8647
|
};
|
|
8657
8648
|
protoOf(TokenizeOptions).hashCode = function () {
|
|
8658
|
-
var result = getBooleanHashCode(this.
|
|
8649
|
+
var result = getBooleanHashCode(this.c2a_1);
|
|
8650
|
+
result = imul(result, 31) + getBooleanHashCode(this.d2a_1) | 0;
|
|
8659
8651
|
result = imul(result, 31) + getBooleanHashCode(this.e2a_1) | 0;
|
|
8660
|
-
result = imul(result, 31) + getBooleanHashCode(this.f2a_1) | 0;
|
|
8661
8652
|
return result;
|
|
8662
8653
|
};
|
|
8663
8654
|
protoOf(TokenizeOptions).equals = function (other) {
|
|
@@ -8666,12 +8657,12 @@ protoOf(TokenizeOptions).equals = function (other) {
|
|
|
8666
8657
|
if (!(other instanceof TokenizeOptions))
|
|
8667
8658
|
return false;
|
|
8668
8659
|
var tmp0_other_with_cast = other instanceof TokenizeOptions ? other : THROW_CCE();
|
|
8660
|
+
if (!(this.c2a_1 === tmp0_other_with_cast.c2a_1))
|
|
8661
|
+
return false;
|
|
8669
8662
|
if (!(this.d2a_1 === tmp0_other_with_cast.d2a_1))
|
|
8670
8663
|
return false;
|
|
8671
8664
|
if (!(this.e2a_1 === tmp0_other_with_cast.e2a_1))
|
|
8672
8665
|
return false;
|
|
8673
|
-
if (!(this.f2a_1 === tmp0_other_with_cast.f2a_1))
|
|
8674
|
-
return false;
|
|
8675
8666
|
return true;
|
|
8676
8667
|
};
|
|
8677
8668
|
function optimize(_this__u8e3s4, options) {
|
|
@@ -8723,7 +8714,7 @@ function specifyFieldIdentifier(_this__u8e3s4, caseVariants) {
|
|
|
8723
8714
|
// Inline function 'community.flock.wirespec.compiler.core.tokenize.specifyFieldIdentifier.<anonymous>' call
|
|
8724
8715
|
var regex = element.sd();
|
|
8725
8716
|
var variant = element.td();
|
|
8726
|
-
var result = regex.tb(removeBackticks(_this__u8e3s4.t26_1)) ? _this__u8e3s4.
|
|
8717
|
+
var result = regex.tb(removeBackticks(_this__u8e3s4.t26_1)) ? _this__u8e3s4.a2a(VOID, variant) : null;
|
|
8727
8718
|
if (!(result == null)) {
|
|
8728
8719
|
tmp$ret$1 = result;
|
|
8729
8720
|
break $l$block;
|
|
@@ -8750,7 +8741,7 @@ function specifyType(_this__u8e3s4, entries) {
|
|
|
8750
8741
|
// Inline function 'kotlin.let' call
|
|
8751
8742
|
// Inline function 'kotlin.contracts.contract' call
|
|
8752
8743
|
// Inline function 'community.flock.wirespec.compiler.core.tokenize.specifyType.<anonymous>' call
|
|
8753
|
-
tmp_0 = _this__u8e3s4.
|
|
8744
|
+
tmp_0 = _this__u8e3s4.a2a(VOID, tmp1_safe_receiver);
|
|
8754
8745
|
}
|
|
8755
8746
|
var tmp2_elvis_lhs = tmp_0;
|
|
8756
8747
|
tmp = tmp2_elvis_lhs == null ? _this__u8e3s4 : tmp2_elvis_lhs;
|
|
@@ -8881,7 +8872,7 @@ function nextCoordinates(_this__u8e3s4, type, value) {
|
|
|
8881
8872
|
}
|
|
8882
8873
|
function nextToken_0(_this__u8e3s4, type, value) {
|
|
8883
8874
|
var tmp0_coordinates = nextCoordinates(_this__u8e3s4.v26_1, type, value);
|
|
8884
|
-
return _this__u8e3s4.
|
|
8875
|
+
return _this__u8e3s4.z29(value, type, tmp0_coordinates);
|
|
8885
8876
|
}
|
|
8886
8877
|
function optimize$lambda$lambda($this$runOption) {
|
|
8887
8878
|
return removeWhiteSpace($this$runOption);
|
|
@@ -8928,9 +8919,9 @@ function optimize$lambda$lambda_1($this_optimize) {
|
|
|
8928
8919
|
}
|
|
8929
8920
|
function optimize$lambda($options, $this_optimize) {
|
|
8930
8921
|
return function (tokens) {
|
|
8931
|
-
var tmp = runOption(tokens, $options.
|
|
8932
|
-
var tmp_0 = runOption(tmp, $options.
|
|
8933
|
-
return runOption(tmp_0, $options.
|
|
8922
|
+
var tmp = runOption(tokens, $options.c2a_1, optimize$lambda$lambda);
|
|
8923
|
+
var tmp_0 = runOption(tmp, $options.d2a_1, optimize$lambda$lambda_0($this_optimize));
|
|
8924
|
+
return runOption(tmp_0, $options.e2a_1, optimize$lambda$lambda_1($this_optimize));
|
|
8934
8925
|
};
|
|
8935
8926
|
}
|
|
8936
8927
|
function validateWithOptions($this, ast, options) {
|
|
@@ -8940,7 +8931,7 @@ function validateWithOptions($this, ast, options) {
|
|
|
8940
8931
|
var this_0 = ast.d25_1;
|
|
8941
8932
|
// Inline function 'community.flock.wirespec.compiler.core.validate.Validator.validateWithOptions.<anonymous>' call
|
|
8942
8933
|
var destruct = this_0.pk_1;
|
|
8943
|
-
var uri = destruct.
|
|
8934
|
+
var uri = destruct.sd();
|
|
8944
8935
|
var statements = destruct.td();
|
|
8945
8936
|
// Inline function 'arrow.core.Either.map' call
|
|
8946
8937
|
// Inline function 'kotlin.contracts.contract' call
|
|
@@ -8970,7 +8961,7 @@ function validateWithOptions($this, ast, options) {
|
|
|
8970
8961
|
while (tmp0_iterator.h()) {
|
|
8971
8962
|
var item = tmp0_iterator.i();
|
|
8972
8963
|
// Inline function 'community.flock.wirespec.compiler.core.validate.Validator.validateWithOptions.<anonymous>' call
|
|
8973
|
-
var uri_0 = item.
|
|
8964
|
+
var uri_0 = item.sd();
|
|
8974
8965
|
var statements_0 = item.td();
|
|
8975
8966
|
// Inline function 'arrow.core.Either.map' call
|
|
8976
8967
|
// Inline function 'kotlin.contracts.contract' call
|
|
@@ -9794,17 +9785,17 @@ function Logger(logLevel) {
|
|
|
9794
9785
|
}
|
|
9795
9786
|
tmp_5.h22_1 = tmp_6;
|
|
9796
9787
|
}
|
|
9797
|
-
protoOf(Logger).
|
|
9788
|
+
protoOf(Logger).f2a = function () {
|
|
9798
9789
|
return this.e22_1;
|
|
9799
9790
|
};
|
|
9800
|
-
protoOf(Logger).
|
|
9791
|
+
protoOf(Logger).g2a = function () {
|
|
9801
9792
|
return this.f22_1;
|
|
9802
9793
|
};
|
|
9803
9794
|
protoOf(Logger).i22 = function (string) {
|
|
9804
|
-
return logIf(string, this, this.
|
|
9795
|
+
return logIf(string, this, this.f2a());
|
|
9805
9796
|
};
|
|
9806
9797
|
protoOf(Logger).x25 = function (string) {
|
|
9807
|
-
return logIf(string, this, this.
|
|
9798
|
+
return logIf(string, this, this.g2a());
|
|
9808
9799
|
};
|
|
9809
9800
|
function NoLogger() {
|
|
9810
9801
|
}
|
|
@@ -9949,6 +9940,7 @@ export {
|
|
|
9949
9940
|
ParseOptions as ParseOptionspl50698nv4gs,
|
|
9950
9941
|
name as name2tedo82t36o5w,
|
|
9951
9942
|
tokenize_0 as tokenize2ymgjd76lr1sl,
|
|
9943
|
+
FileUri as FileUri2xjkmf4jmvpab,
|
|
9952
9944
|
get_spec as get_spec3cnzsbb1ufwje,
|
|
9953
9945
|
HasLanguageSpec as HasLanguageSpec1fo5x3q6dcifj,
|
|
9954
9946
|
ModuleContent as ModuleContent750xezzquzy9,
|
|
@@ -9988,7 +9980,6 @@ export {
|
|
|
9988
9980
|
_Comment___get_value__impl__8r3pla as _Comment___get_value__impl__8r3plaqyy4ualbhxi3,
|
|
9989
9981
|
_RegExp___init__impl__p22noo as _RegExp___init__impl__p22noovde4waq0m70,
|
|
9990
9982
|
_RegExp___get_value__impl__7o7618 as _RegExp___get_value__impl__7o76182ohb7gkdeho1s,
|
|
9991
|
-
_FileUri___init__impl__ujwvc9 as _FileUri___init__impl__ujwvc91797d3q83xxiv,
|
|
9992
9983
|
Companion_instance_0 as Companion_instance26a9xkw31611z,
|
|
9993
9984
|
Companion_instance_1 as Companion_instance2piryw1e8zn12,
|
|
9994
9985
|
Companion_instance_2 as Companion_instance2ag0h5twtdral,
|