@dhis2/expression-parser 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1390 -1390
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1390 -1390
- package/KotlinBigInteger-bignum.js +1165 -1165
- package/KotlinBigInteger-bignum.js.map +1 -1
- package/KotlinBigInteger-bignum.mjs +1165 -1165
- package/KotlinBigInteger-bignum.mjs.map +1 -1
- package/expression-parser.js +2006 -1998
- package/expression-parser.js.map +1 -1
- package/expression-parser.mjs +2006 -1998
- package/expression-parser.mjs.map +1 -1
- package/kotlin-js.js +12 -12
- package/kotlin-js.mjs +12 -12
- package/kotlin-kotlin-stdlib.js +551 -559
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-kotlin-stdlib.mjs +548 -556
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/package.json +1 -1
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -120,12 +120,12 @@ initMetadataForObject(Unit, 'Unit');
|
|
|
120
120
|
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection]);
|
|
121
121
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
122
122
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
123
|
-
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection,
|
|
123
|
+
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtList, Collection]);
|
|
124
124
|
initMetadataForClass(AbstractMap, 'AbstractMap', VOID, VOID, [KtMap]);
|
|
125
125
|
initMetadataForClass(AbstractMutableMap, 'AbstractMutableMap', VOID, AbstractMap, [AbstractMap, KtMap]);
|
|
126
126
|
initMetadataForClass(AbstractMutableSet, 'AbstractMutableSet', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtSet, Collection]);
|
|
127
127
|
initMetadataForCompanion(Companion_2);
|
|
128
|
-
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList,
|
|
128
|
+
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtList, Collection, RandomAccess]);
|
|
129
129
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMap]);
|
|
130
130
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtSet, Collection, AbstractMutableSet]);
|
|
131
131
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtSet, Collection, AbstractMutableSet]);
|
|
@@ -5156,9 +5156,6 @@ function getKClassFromExpression(e) {
|
|
|
5156
5156
|
// Inline function 'kotlin.js.asDynamic' call
|
|
5157
5157
|
return tmp;
|
|
5158
5158
|
}
|
|
5159
|
-
function reset(_this__u8e3s4) {
|
|
5160
|
-
_this__u8e3s4.lastIndex = 0;
|
|
5161
|
-
}
|
|
5162
5159
|
function StringBuilder_init_$Init$(capacity, $this) {
|
|
5163
5160
|
StringBuilder_init_$Init$_1($this);
|
|
5164
5161
|
return $this;
|
|
@@ -5413,32 +5410,27 @@ function Regex(pattern, options) {
|
|
|
5413
5410
|
this.t9_1 = null;
|
|
5414
5411
|
this.u9_1 = null;
|
|
5415
5412
|
}
|
|
5416
|
-
protoOf(Regex).w9 = function (input) {
|
|
5417
|
-
reset(this.s9_1);
|
|
5418
|
-
var match = this.s9_1.exec(toString_1(input));
|
|
5419
|
-
return !(match == null) && match.index === 0 && this.s9_1.lastIndex === charSequenceLength(input);
|
|
5420
|
-
};
|
|
5421
5413
|
protoOf(Regex).v9 = function (input, startIndex) {
|
|
5422
5414
|
if (startIndex < 0 || startIndex > charSequenceLength(input)) {
|
|
5423
5415
|
throw IndexOutOfBoundsException_init_$Create$_0('Start index out of bounds: ' + startIndex + ', input length: ' + charSequenceLength(input));
|
|
5424
5416
|
}
|
|
5425
5417
|
return findNext(this.s9_1, toString_1(input), startIndex, this.s9_1);
|
|
5426
5418
|
};
|
|
5427
|
-
protoOf(Regex).
|
|
5419
|
+
protoOf(Regex).w9 = function (input, startIndex) {
|
|
5428
5420
|
if (startIndex < 0 || startIndex > charSequenceLength(input)) {
|
|
5429
5421
|
throw IndexOutOfBoundsException_init_$Create$_0('Start index out of bounds: ' + startIndex + ', input length: ' + charSequenceLength(input));
|
|
5430
5422
|
}
|
|
5431
5423
|
var tmp = Regex$findAll$lambda(this, input, startIndex);
|
|
5432
5424
|
return generateSequence(tmp, Regex$findAll$lambda_0);
|
|
5433
5425
|
};
|
|
5434
|
-
protoOf(Regex).
|
|
5426
|
+
protoOf(Regex).x9 = function (input, startIndex, $super) {
|
|
5435
5427
|
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
5436
|
-
return $super === VOID ? this.
|
|
5428
|
+
return $super === VOID ? this.w9(input, startIndex) : $super.w9.call(this, input, startIndex);
|
|
5437
5429
|
};
|
|
5438
|
-
protoOf(Regex).
|
|
5430
|
+
protoOf(Regex).y9 = function (input, limit) {
|
|
5439
5431
|
requireNonNegativeLimit(limit);
|
|
5440
5432
|
// Inline function 'kotlin.let' call
|
|
5441
|
-
var it = this.
|
|
5433
|
+
var it = this.x9(input);
|
|
5442
5434
|
var matches = limit === 0 ? it : take_0(it, limit - 1 | 0);
|
|
5443
5435
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
5444
5436
|
var result = ArrayList_init_$Create$();
|
|
@@ -5446,8 +5438,8 @@ protoOf(Regex).z9 = function (input, limit) {
|
|
|
5446
5438
|
var _iterator__ex2g4s = matches.l();
|
|
5447
5439
|
while (_iterator__ex2g4s.m()) {
|
|
5448
5440
|
var match = _iterator__ex2g4s.n();
|
|
5449
|
-
result.j(toString_1(charSequenceSubSequence(input, lastStart, match.
|
|
5450
|
-
lastStart = match.
|
|
5441
|
+
result.j(toString_1(charSequenceSubSequence(input, lastStart, match.z9().g1())));
|
|
5442
|
+
lastStart = match.z9().h1() + 1 | 0;
|
|
5451
5443
|
}
|
|
5452
5444
|
result.j(toString_1(charSequenceSubSequence(input, lastStart, charSequenceLength(input))));
|
|
5453
5445
|
return result;
|
|
@@ -5467,25 +5459,25 @@ function findNext(_this__u8e3s4, input, from, nextPattern) {
|
|
|
5467
5459
|
return new findNext$1(range, match, nextPattern, input);
|
|
5468
5460
|
}
|
|
5469
5461
|
function MatchGroup(value) {
|
|
5470
|
-
this.
|
|
5462
|
+
this.aa_1 = value;
|
|
5471
5463
|
}
|
|
5472
5464
|
protoOf(MatchGroup).toString = function () {
|
|
5473
|
-
return 'MatchGroup(value=' + this.
|
|
5465
|
+
return 'MatchGroup(value=' + this.aa_1 + ')';
|
|
5474
5466
|
};
|
|
5475
5467
|
protoOf(MatchGroup).hashCode = function () {
|
|
5476
|
-
return getStringHashCode(this.
|
|
5468
|
+
return getStringHashCode(this.aa_1);
|
|
5477
5469
|
};
|
|
5478
5470
|
protoOf(MatchGroup).equals = function (other) {
|
|
5479
5471
|
if (this === other)
|
|
5480
5472
|
return true;
|
|
5481
5473
|
if (!(other instanceof MatchGroup))
|
|
5482
5474
|
return false;
|
|
5483
|
-
if (!(this.
|
|
5475
|
+
if (!(this.aa_1 === other.aa_1))
|
|
5484
5476
|
return false;
|
|
5485
5477
|
return true;
|
|
5486
5478
|
};
|
|
5487
5479
|
function toFlags$lambda(it) {
|
|
5488
|
-
return it.
|
|
5480
|
+
return it.da_1;
|
|
5489
5481
|
}
|
|
5490
5482
|
function findNext$o$groups$o$iterator$lambda(this$0) {
|
|
5491
5483
|
return function (it) {
|
|
@@ -5493,14 +5485,14 @@ function findNext$o$groups$o$iterator$lambda(this$0) {
|
|
|
5493
5485
|
};
|
|
5494
5486
|
}
|
|
5495
5487
|
function advanceToNextCharacter($this, index) {
|
|
5496
|
-
if (index < get_lastIndex_1($this.
|
|
5488
|
+
if (index < get_lastIndex_1($this.ma_1)) {
|
|
5497
5489
|
// Inline function 'kotlin.js.asDynamic' call
|
|
5498
5490
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
5499
|
-
var code1 = $this.
|
|
5491
|
+
var code1 = $this.ma_1.charCodeAt(index);
|
|
5500
5492
|
if (55296 <= code1 ? code1 <= 56319 : false) {
|
|
5501
5493
|
// Inline function 'kotlin.js.asDynamic' call
|
|
5502
5494
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
5503
|
-
var code2 = $this.
|
|
5495
|
+
var code2 = $this.ma_1.charCodeAt(index + 1 | 0);
|
|
5504
5496
|
if (56320 <= code2 ? code2 <= 57343 : false) {
|
|
5505
5497
|
return index + 2 | 0;
|
|
5506
5498
|
}
|
|
@@ -5509,12 +5501,12 @@ function advanceToNextCharacter($this, index) {
|
|
|
5509
5501
|
return index + 1 | 0;
|
|
5510
5502
|
}
|
|
5511
5503
|
function findNext$1$groups$1($match, this$0) {
|
|
5512
|
-
this.
|
|
5513
|
-
this.
|
|
5504
|
+
this.ea_1 = $match;
|
|
5505
|
+
this.fa_1 = this$0;
|
|
5514
5506
|
AbstractCollection.call(this);
|
|
5515
5507
|
}
|
|
5516
5508
|
protoOf(findNext$1$groups$1).q = function () {
|
|
5517
|
-
return this.
|
|
5509
|
+
return this.ea_1.length;
|
|
5518
5510
|
};
|
|
5519
5511
|
protoOf(findNext$1$groups$1).l = function () {
|
|
5520
5512
|
var tmp = asSequence(get_indices(this));
|
|
@@ -5523,7 +5515,7 @@ protoOf(findNext$1$groups$1).l = function () {
|
|
|
5523
5515
|
protoOf(findNext$1$groups$1).p = function (index) {
|
|
5524
5516
|
// Inline function 'kotlin.js.get' call
|
|
5525
5517
|
// Inline function 'kotlin.js.asDynamic' call
|
|
5526
|
-
var tmp0_safe_receiver = this.
|
|
5518
|
+
var tmp0_safe_receiver = this.ea_1[index];
|
|
5527
5519
|
var tmp;
|
|
5528
5520
|
if (tmp0_safe_receiver == null) {
|
|
5529
5521
|
tmp = null;
|
|
@@ -5534,20 +5526,20 @@ protoOf(findNext$1$groups$1).p = function (index) {
|
|
|
5534
5526
|
return tmp;
|
|
5535
5527
|
};
|
|
5536
5528
|
function findNext$1($range, $match, $nextPattern, $input) {
|
|
5537
|
-
this.
|
|
5538
|
-
this.
|
|
5539
|
-
this.
|
|
5540
|
-
this.
|
|
5541
|
-
this.
|
|
5529
|
+
this.ja_1 = $range;
|
|
5530
|
+
this.ka_1 = $match;
|
|
5531
|
+
this.la_1 = $nextPattern;
|
|
5532
|
+
this.ma_1 = $input;
|
|
5533
|
+
this.ga_1 = $range;
|
|
5542
5534
|
var tmp = this;
|
|
5543
|
-
tmp.
|
|
5544
|
-
this.
|
|
5535
|
+
tmp.ha_1 = new findNext$1$groups$1($match, this);
|
|
5536
|
+
this.ia_1 = null;
|
|
5545
5537
|
}
|
|
5546
|
-
protoOf(findNext$1).
|
|
5547
|
-
return this.
|
|
5538
|
+
protoOf(findNext$1).z9 = function () {
|
|
5539
|
+
return this.ga_1;
|
|
5548
5540
|
};
|
|
5549
5541
|
protoOf(findNext$1).n = function () {
|
|
5550
|
-
return findNext(this.
|
|
5542
|
+
return findNext(this.la_1, this.ma_1, this.ja_1.o() ? advanceToNextCharacter(this, this.ja_1.g1()) : this.ja_1.h1() + 1 | 0, this.la_1);
|
|
5551
5543
|
};
|
|
5552
5544
|
var STRING_CASE_INSENSITIVE_ORDER;
|
|
5553
5545
|
function substring(_this__u8e3s4, startIndex, endIndex) {
|
|
@@ -5623,7 +5615,7 @@ function concatToString_0(_this__u8e3s4, startIndex, endIndex) {
|
|
|
5623
5615
|
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
5624
5616
|
endIndex = endIndex === VOID ? _this__u8e3s4.length : endIndex;
|
|
5625
5617
|
_init_properties_stringJs_kt__bg7zye();
|
|
5626
|
-
Companion_instance_5.
|
|
5618
|
+
Companion_instance_5.na(startIndex, endIndex, _this__u8e3s4.length);
|
|
5627
5619
|
var result = '';
|
|
5628
5620
|
var inductionVariable = startIndex;
|
|
5629
5621
|
if (inductionVariable < endIndex)
|
|
@@ -5648,16 +5640,16 @@ function toCharArray(_this__u8e3s4) {
|
|
|
5648
5640
|
return tmp_1;
|
|
5649
5641
|
}
|
|
5650
5642
|
function sam$kotlin_Comparator$0(function_0) {
|
|
5651
|
-
this.
|
|
5643
|
+
this.oa_1 = function_0;
|
|
5652
5644
|
}
|
|
5653
|
-
protoOf(sam$kotlin_Comparator$0).
|
|
5654
|
-
return this.
|
|
5645
|
+
protoOf(sam$kotlin_Comparator$0).pa = function (a, b) {
|
|
5646
|
+
return this.oa_1(a, b);
|
|
5655
5647
|
};
|
|
5656
5648
|
protoOf(sam$kotlin_Comparator$0).compare = function (a, b) {
|
|
5657
|
-
return this.
|
|
5649
|
+
return this.pa(a, b);
|
|
5658
5650
|
};
|
|
5659
5651
|
protoOf(sam$kotlin_Comparator$0).o2 = function () {
|
|
5660
|
-
return this.
|
|
5652
|
+
return this.oa_1;
|
|
5661
5653
|
};
|
|
5662
5654
|
protoOf(sam$kotlin_Comparator$0).equals = function (other) {
|
|
5663
5655
|
var tmp;
|
|
@@ -5816,36 +5808,36 @@ protoOf(AbstractCollection).toArray = function () {
|
|
|
5816
5808
|
return collectionToArray(this);
|
|
5817
5809
|
};
|
|
5818
5810
|
function IteratorImpl_0($outer) {
|
|
5819
|
-
this.
|
|
5820
|
-
this.
|
|
5811
|
+
this.ra_1 = $outer;
|
|
5812
|
+
this.qa_1 = 0;
|
|
5821
5813
|
}
|
|
5822
5814
|
protoOf(IteratorImpl_0).m = function () {
|
|
5823
|
-
return this.
|
|
5815
|
+
return this.qa_1 < this.ra_1.q();
|
|
5824
5816
|
};
|
|
5825
5817
|
protoOf(IteratorImpl_0).n = function () {
|
|
5826
5818
|
if (!this.m())
|
|
5827
5819
|
throw NoSuchElementException_init_$Create$();
|
|
5828
|
-
var _unary__edvuaz = this.
|
|
5829
|
-
this.
|
|
5830
|
-
return this.
|
|
5820
|
+
var _unary__edvuaz = this.qa_1;
|
|
5821
|
+
this.qa_1 = _unary__edvuaz + 1 | 0;
|
|
5822
|
+
return this.ra_1.p(_unary__edvuaz);
|
|
5831
5823
|
};
|
|
5832
5824
|
function ListIteratorImpl_0($outer, index) {
|
|
5833
|
-
this.
|
|
5825
|
+
this.ua_1 = $outer;
|
|
5834
5826
|
IteratorImpl_0.call(this, $outer);
|
|
5835
|
-
Companion_instance_5.l3(index, this.
|
|
5836
|
-
this.
|
|
5827
|
+
Companion_instance_5.l3(index, this.ua_1.q());
|
|
5828
|
+
this.qa_1 = index;
|
|
5837
5829
|
}
|
|
5838
5830
|
protoOf(ListIteratorImpl_0).m3 = function () {
|
|
5839
|
-
return this.
|
|
5831
|
+
return this.qa_1 > 0;
|
|
5840
5832
|
};
|
|
5841
5833
|
protoOf(ListIteratorImpl_0).n3 = function () {
|
|
5842
|
-
return this.
|
|
5834
|
+
return this.qa_1;
|
|
5843
5835
|
};
|
|
5844
5836
|
protoOf(ListIteratorImpl_0).o3 = function () {
|
|
5845
5837
|
if (!this.m3())
|
|
5846
5838
|
throw NoSuchElementException_init_$Create$();
|
|
5847
|
-
this.
|
|
5848
|
-
return this.
|
|
5839
|
+
this.qa_1 = this.qa_1 - 1 | 0;
|
|
5840
|
+
return this.ua_1.p(this.qa_1);
|
|
5849
5841
|
};
|
|
5850
5842
|
function Companion_5() {
|
|
5851
5843
|
this.r2_1 = 2147483639;
|
|
@@ -5868,7 +5860,7 @@ protoOf(Companion_5).s2 = function (fromIndex, toIndex, size) {
|
|
|
5868
5860
|
throw IllegalArgumentException_init_$Create$_0('fromIndex: ' + fromIndex + ' > toIndex: ' + toIndex);
|
|
5869
5861
|
}
|
|
5870
5862
|
};
|
|
5871
|
-
protoOf(Companion_5).
|
|
5863
|
+
protoOf(Companion_5).na = function (startIndex, endIndex, size) {
|
|
5872
5864
|
if (startIndex < 0 || endIndex > size) {
|
|
5873
5865
|
throw IndexOutOfBoundsException_init_$Create$_0('startIndex: ' + startIndex + ', endIndex: ' + endIndex + ', size: ' + size);
|
|
5874
5866
|
}
|
|
@@ -5951,13 +5943,13 @@ protoOf(AbstractList).hashCode = function () {
|
|
|
5951
5943
|
return Companion_instance_5.t3(this);
|
|
5952
5944
|
};
|
|
5953
5945
|
function AbstractMap$keys$1$iterator$1($entryIterator) {
|
|
5954
|
-
this.
|
|
5946
|
+
this.va_1 = $entryIterator;
|
|
5955
5947
|
}
|
|
5956
5948
|
protoOf(AbstractMap$keys$1$iterator$1).m = function () {
|
|
5957
|
-
return this.
|
|
5949
|
+
return this.va_1.m();
|
|
5958
5950
|
};
|
|
5959
5951
|
protoOf(AbstractMap$keys$1$iterator$1).n = function () {
|
|
5960
|
-
return this.
|
|
5952
|
+
return this.va_1.n().w1();
|
|
5961
5953
|
};
|
|
5962
5954
|
function toString_3($this, entry) {
|
|
5963
5955
|
return toString_4($this, entry.w1()) + '=' + toString_4($this, entry.x1());
|
|
@@ -5989,11 +5981,11 @@ function Companion_getInstance_6() {
|
|
|
5989
5981
|
return Companion_instance_6;
|
|
5990
5982
|
}
|
|
5991
5983
|
function AbstractMap$keys$1(this$0) {
|
|
5992
|
-
this.
|
|
5984
|
+
this.wa_1 = this$0;
|
|
5993
5985
|
AbstractSet.call(this);
|
|
5994
5986
|
}
|
|
5995
5987
|
protoOf(AbstractMap$keys$1).o4 = function (element) {
|
|
5996
|
-
return this.
|
|
5988
|
+
return this.wa_1.y1(element);
|
|
5997
5989
|
};
|
|
5998
5990
|
protoOf(AbstractMap$keys$1).t = function (element) {
|
|
5999
5991
|
if (!(element == null ? true : !(element == null)))
|
|
@@ -6001,11 +5993,11 @@ protoOf(AbstractMap$keys$1).t = function (element) {
|
|
|
6001
5993
|
return this.o4((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
6002
5994
|
};
|
|
6003
5995
|
protoOf(AbstractMap$keys$1).l = function () {
|
|
6004
|
-
var entryIterator = this.
|
|
5996
|
+
var entryIterator = this.wa_1.b2().l();
|
|
6005
5997
|
return new AbstractMap$keys$1$iterator$1(entryIterator);
|
|
6006
5998
|
};
|
|
6007
5999
|
protoOf(AbstractMap$keys$1).q = function () {
|
|
6008
|
-
return this.
|
|
6000
|
+
return this.wa_1.q();
|
|
6009
6001
|
};
|
|
6010
6002
|
function AbstractMap$toString$lambda(this$0) {
|
|
6011
6003
|
return function (it) {
|
|
@@ -6136,7 +6128,7 @@ protoOf(AbstractSet).hashCode = function () {
|
|
|
6136
6128
|
function ArrayDeque_init_$Init$($this) {
|
|
6137
6129
|
AbstractMutableList.call($this);
|
|
6138
6130
|
ArrayDeque.call($this);
|
|
6139
|
-
$this.
|
|
6131
|
+
$this.za_1 = Companion_getInstance_8().bb_1;
|
|
6140
6132
|
return $this;
|
|
6141
6133
|
}
|
|
6142
6134
|
function ArrayDeque_init_$Create$() {
|
|
@@ -6145,68 +6137,68 @@ function ArrayDeque_init_$Create$() {
|
|
|
6145
6137
|
function ensureCapacity_0($this, minCapacity) {
|
|
6146
6138
|
if (minCapacity < 0)
|
|
6147
6139
|
throw IllegalStateException_init_$Create$_0('Deque is too big.');
|
|
6148
|
-
if (minCapacity <= $this.
|
|
6140
|
+
if (minCapacity <= $this.za_1.length)
|
|
6149
6141
|
return Unit_instance;
|
|
6150
|
-
if ($this.
|
|
6142
|
+
if ($this.za_1 === Companion_getInstance_8().bb_1) {
|
|
6151
6143
|
var tmp = $this;
|
|
6152
6144
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
6153
6145
|
var size = coerceAtLeast(minCapacity, 10);
|
|
6154
|
-
tmp.
|
|
6146
|
+
tmp.za_1 = Array(size);
|
|
6155
6147
|
return Unit_instance;
|
|
6156
6148
|
}
|
|
6157
|
-
var newCapacity = Companion_instance_5.r5($this.
|
|
6149
|
+
var newCapacity = Companion_instance_5.r5($this.za_1.length, minCapacity);
|
|
6158
6150
|
copyElements($this, newCapacity);
|
|
6159
6151
|
}
|
|
6160
6152
|
function copyElements($this, newCapacity) {
|
|
6161
6153
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
6162
6154
|
var newElements = Array(newCapacity);
|
|
6163
|
-
var tmp0 = $this.
|
|
6164
|
-
var tmp6 = $this.
|
|
6155
|
+
var tmp0 = $this.za_1;
|
|
6156
|
+
var tmp6 = $this.ya_1;
|
|
6165
6157
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6166
|
-
var endIndex = $this.
|
|
6158
|
+
var endIndex = $this.za_1.length;
|
|
6167
6159
|
arrayCopy(tmp0, newElements, 0, tmp6, endIndex);
|
|
6168
|
-
var tmp0_0 = $this.
|
|
6169
|
-
var tmp4 = $this.
|
|
6160
|
+
var tmp0_0 = $this.za_1;
|
|
6161
|
+
var tmp4 = $this.za_1.length - $this.ya_1 | 0;
|
|
6170
6162
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6171
|
-
var endIndex_0 = $this.
|
|
6163
|
+
var endIndex_0 = $this.ya_1;
|
|
6172
6164
|
arrayCopy(tmp0_0, newElements, tmp4, 0, endIndex_0);
|
|
6173
|
-
$this.
|
|
6174
|
-
$this.
|
|
6165
|
+
$this.ya_1 = 0;
|
|
6166
|
+
$this.za_1 = newElements;
|
|
6175
6167
|
}
|
|
6176
6168
|
function positiveMod($this, index) {
|
|
6177
|
-
return index >= $this.
|
|
6169
|
+
return index >= $this.za_1.length ? index - $this.za_1.length | 0 : index;
|
|
6178
6170
|
}
|
|
6179
6171
|
function incremented($this, index) {
|
|
6180
|
-
return index === get_lastIndex($this.
|
|
6172
|
+
return index === get_lastIndex($this.za_1) ? 0 : index + 1 | 0;
|
|
6181
6173
|
}
|
|
6182
6174
|
function decremented($this, index) {
|
|
6183
|
-
return index === 0 ? get_lastIndex($this.
|
|
6175
|
+
return index === 0 ? get_lastIndex($this.za_1) : index - 1 | 0;
|
|
6184
6176
|
}
|
|
6185
6177
|
function copyCollectionElements($this, internalIndex, elements) {
|
|
6186
6178
|
var iterator = elements.l();
|
|
6187
6179
|
var inductionVariable = internalIndex;
|
|
6188
|
-
var last = $this.
|
|
6180
|
+
var last = $this.za_1.length;
|
|
6189
6181
|
if (inductionVariable < last)
|
|
6190
6182
|
$l$loop: do {
|
|
6191
6183
|
var index = inductionVariable;
|
|
6192
6184
|
inductionVariable = inductionVariable + 1 | 0;
|
|
6193
6185
|
if (!iterator.m())
|
|
6194
6186
|
break $l$loop;
|
|
6195
|
-
$this.
|
|
6187
|
+
$this.za_1[index] = iterator.n();
|
|
6196
6188
|
}
|
|
6197
6189
|
while (inductionVariable < last);
|
|
6198
6190
|
var inductionVariable_0 = 0;
|
|
6199
|
-
var last_0 = $this.
|
|
6191
|
+
var last_0 = $this.ya_1;
|
|
6200
6192
|
if (inductionVariable_0 < last_0)
|
|
6201
6193
|
$l$loop_0: do {
|
|
6202
6194
|
var index_0 = inductionVariable_0;
|
|
6203
6195
|
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
6204
6196
|
if (!iterator.m())
|
|
6205
6197
|
break $l$loop_0;
|
|
6206
|
-
$this.
|
|
6198
|
+
$this.za_1[index_0] = iterator.n();
|
|
6207
6199
|
}
|
|
6208
6200
|
while (inductionVariable_0 < last_0);
|
|
6209
|
-
$this.
|
|
6201
|
+
$this.ab_1 = $this.ab_1 + elements.q() | 0;
|
|
6210
6202
|
}
|
|
6211
6203
|
function registerModification_0($this) {
|
|
6212
6204
|
$this.p3_1 = $this.p3_1 + 1 | 0;
|
|
@@ -6215,8 +6207,8 @@ function Companion_8() {
|
|
|
6215
6207
|
Companion_instance_8 = this;
|
|
6216
6208
|
var tmp = this;
|
|
6217
6209
|
// Inline function 'kotlin.emptyArray' call
|
|
6218
|
-
tmp.
|
|
6219
|
-
this.
|
|
6210
|
+
tmp.bb_1 = [];
|
|
6211
|
+
this.cb_1 = 10;
|
|
6220
6212
|
}
|
|
6221
6213
|
var Companion_instance_8;
|
|
6222
6214
|
function Companion_getInstance_8() {
|
|
@@ -6225,12 +6217,12 @@ function Companion_getInstance_8() {
|
|
|
6225
6217
|
return Companion_instance_8;
|
|
6226
6218
|
}
|
|
6227
6219
|
protoOf(ArrayDeque).q = function () {
|
|
6228
|
-
return this.
|
|
6220
|
+
return this.ab_1;
|
|
6229
6221
|
};
|
|
6230
6222
|
protoOf(ArrayDeque).o = function () {
|
|
6231
|
-
return this.
|
|
6223
|
+
return this.ab_1 === 0;
|
|
6232
6224
|
};
|
|
6233
|
-
protoOf(ArrayDeque).
|
|
6225
|
+
protoOf(ArrayDeque).db = function () {
|
|
6234
6226
|
var tmp;
|
|
6235
6227
|
if (this.o()) {
|
|
6236
6228
|
throw NoSuchElementException_init_$Create$_0('ArrayDeque is empty.');
|
|
@@ -6238,155 +6230,155 @@ protoOf(ArrayDeque).eb = function () {
|
|
|
6238
6230
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6239
6231
|
var index = get_lastIndex_0(this);
|
|
6240
6232
|
// Inline function 'kotlin.collections.ArrayDeque.internalGet' call
|
|
6241
|
-
var internalIndex = positiveMod(this, this.
|
|
6242
|
-
var tmp_0 = this.
|
|
6233
|
+
var internalIndex = positiveMod(this, this.ya_1 + index | 0);
|
|
6234
|
+
var tmp_0 = this.za_1[internalIndex];
|
|
6243
6235
|
tmp = (tmp_0 == null ? true : !(tmp_0 == null)) ? tmp_0 : THROW_CCE();
|
|
6244
6236
|
}
|
|
6245
6237
|
return tmp;
|
|
6246
6238
|
};
|
|
6247
|
-
protoOf(ArrayDeque).
|
|
6239
|
+
protoOf(ArrayDeque).eb = function (element) {
|
|
6248
6240
|
registerModification_0(this);
|
|
6249
|
-
ensureCapacity_0(this, this.
|
|
6250
|
-
this.
|
|
6251
|
-
this.
|
|
6252
|
-
this.
|
|
6241
|
+
ensureCapacity_0(this, this.ab_1 + 1 | 0);
|
|
6242
|
+
this.ya_1 = decremented(this, this.ya_1);
|
|
6243
|
+
this.za_1[this.ya_1] = element;
|
|
6244
|
+
this.ab_1 = this.ab_1 + 1 | 0;
|
|
6253
6245
|
};
|
|
6254
|
-
protoOf(ArrayDeque).
|
|
6246
|
+
protoOf(ArrayDeque).fb = function (element) {
|
|
6255
6247
|
registerModification_0(this);
|
|
6256
|
-
ensureCapacity_0(this, this.
|
|
6257
|
-
var tmp = this.
|
|
6248
|
+
ensureCapacity_0(this, this.ab_1 + 1 | 0);
|
|
6249
|
+
var tmp = this.za_1;
|
|
6258
6250
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6259
|
-
var index = this.
|
|
6260
|
-
tmp[positiveMod(this, this.
|
|
6261
|
-
this.
|
|
6251
|
+
var index = this.ab_1;
|
|
6252
|
+
tmp[positiveMod(this, this.ya_1 + index | 0)] = element;
|
|
6253
|
+
this.ab_1 = this.ab_1 + 1 | 0;
|
|
6262
6254
|
};
|
|
6263
|
-
protoOf(ArrayDeque).
|
|
6255
|
+
protoOf(ArrayDeque).gb = function () {
|
|
6264
6256
|
if (this.o())
|
|
6265
6257
|
throw NoSuchElementException_init_$Create$_0('ArrayDeque is empty.');
|
|
6266
6258
|
registerModification_0(this);
|
|
6267
6259
|
// Inline function 'kotlin.collections.ArrayDeque.internalGet' call
|
|
6268
|
-
var internalIndex = this.
|
|
6269
|
-
var tmp = this.
|
|
6260
|
+
var internalIndex = this.ya_1;
|
|
6261
|
+
var tmp = this.za_1[internalIndex];
|
|
6270
6262
|
var element = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
6271
|
-
this.
|
|
6272
|
-
this.
|
|
6273
|
-
this.
|
|
6263
|
+
this.za_1[this.ya_1] = null;
|
|
6264
|
+
this.ya_1 = incremented(this, this.ya_1);
|
|
6265
|
+
this.ab_1 = this.ab_1 - 1 | 0;
|
|
6274
6266
|
return element;
|
|
6275
6267
|
};
|
|
6276
|
-
protoOf(ArrayDeque).
|
|
6268
|
+
protoOf(ArrayDeque).hb = function () {
|
|
6277
6269
|
if (this.o())
|
|
6278
6270
|
throw NoSuchElementException_init_$Create$_0('ArrayDeque is empty.');
|
|
6279
6271
|
registerModification_0(this);
|
|
6280
6272
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6281
6273
|
var index = get_lastIndex_0(this);
|
|
6282
|
-
var internalLastIndex = positiveMod(this, this.
|
|
6274
|
+
var internalLastIndex = positiveMod(this, this.ya_1 + index | 0);
|
|
6283
6275
|
// Inline function 'kotlin.collections.ArrayDeque.internalGet' call
|
|
6284
|
-
var tmp = this.
|
|
6276
|
+
var tmp = this.za_1[internalLastIndex];
|
|
6285
6277
|
var element = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
6286
|
-
this.
|
|
6287
|
-
this.
|
|
6278
|
+
this.za_1[internalLastIndex] = null;
|
|
6279
|
+
this.ab_1 = this.ab_1 - 1 | 0;
|
|
6288
6280
|
return element;
|
|
6289
6281
|
};
|
|
6290
6282
|
protoOf(ArrayDeque).j = function (element) {
|
|
6291
|
-
this.
|
|
6283
|
+
this.fb(element);
|
|
6292
6284
|
return true;
|
|
6293
6285
|
};
|
|
6294
6286
|
protoOf(ArrayDeque).q3 = function (index, element) {
|
|
6295
|
-
Companion_instance_5.l3(index, this.
|
|
6296
|
-
if (index === this.
|
|
6297
|
-
this.
|
|
6287
|
+
Companion_instance_5.l3(index, this.ab_1);
|
|
6288
|
+
if (index === this.ab_1) {
|
|
6289
|
+
this.fb(element);
|
|
6298
6290
|
return Unit_instance;
|
|
6299
6291
|
} else if (index === 0) {
|
|
6300
|
-
this.
|
|
6292
|
+
this.eb(element);
|
|
6301
6293
|
return Unit_instance;
|
|
6302
6294
|
}
|
|
6303
6295
|
registerModification_0(this);
|
|
6304
|
-
ensureCapacity_0(this, this.
|
|
6296
|
+
ensureCapacity_0(this, this.ab_1 + 1 | 0);
|
|
6305
6297
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6306
|
-
var internalIndex = positiveMod(this, this.
|
|
6307
|
-
if (index < (this.
|
|
6298
|
+
var internalIndex = positiveMod(this, this.ya_1 + index | 0);
|
|
6299
|
+
if (index < (this.ab_1 + 1 | 0) >> 1) {
|
|
6308
6300
|
var decrementedInternalIndex = decremented(this, internalIndex);
|
|
6309
|
-
var decrementedHead = decremented(this, this.
|
|
6310
|
-
if (decrementedInternalIndex >= this.
|
|
6311
|
-
this.
|
|
6312
|
-
var tmp0 = this.
|
|
6313
|
-
var tmp2 = this.
|
|
6314
|
-
var tmp4 = this.
|
|
6315
|
-
var tmp6 = this.
|
|
6301
|
+
var decrementedHead = decremented(this, this.ya_1);
|
|
6302
|
+
if (decrementedInternalIndex >= this.ya_1) {
|
|
6303
|
+
this.za_1[decrementedHead] = this.za_1[this.ya_1];
|
|
6304
|
+
var tmp0 = this.za_1;
|
|
6305
|
+
var tmp2 = this.za_1;
|
|
6306
|
+
var tmp4 = this.ya_1;
|
|
6307
|
+
var tmp6 = this.ya_1 + 1 | 0;
|
|
6316
6308
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6317
6309
|
var endIndex = decrementedInternalIndex + 1 | 0;
|
|
6318
6310
|
arrayCopy(tmp0, tmp2, tmp4, tmp6, endIndex);
|
|
6319
6311
|
} else {
|
|
6320
|
-
var tmp0_0 = this.
|
|
6321
|
-
var tmp2_0 = this.
|
|
6322
|
-
var tmp4_0 = this.
|
|
6323
|
-
var tmp6_0 = this.
|
|
6312
|
+
var tmp0_0 = this.za_1;
|
|
6313
|
+
var tmp2_0 = this.za_1;
|
|
6314
|
+
var tmp4_0 = this.ya_1 - 1 | 0;
|
|
6315
|
+
var tmp6_0 = this.ya_1;
|
|
6324
6316
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6325
|
-
var endIndex_0 = this.
|
|
6317
|
+
var endIndex_0 = this.za_1.length;
|
|
6326
6318
|
arrayCopy(tmp0_0, tmp2_0, tmp4_0, tmp6_0, endIndex_0);
|
|
6327
|
-
this.
|
|
6328
|
-
var tmp0_1 = this.
|
|
6329
|
-
var tmp2_1 = this.
|
|
6319
|
+
this.za_1[this.za_1.length - 1 | 0] = this.za_1[0];
|
|
6320
|
+
var tmp0_1 = this.za_1;
|
|
6321
|
+
var tmp2_1 = this.za_1;
|
|
6330
6322
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6331
6323
|
var endIndex_1 = decrementedInternalIndex + 1 | 0;
|
|
6332
6324
|
arrayCopy(tmp0_1, tmp2_1, 0, 1, endIndex_1);
|
|
6333
6325
|
}
|
|
6334
|
-
this.
|
|
6335
|
-
this.
|
|
6326
|
+
this.za_1[decrementedInternalIndex] = element;
|
|
6327
|
+
this.ya_1 = decrementedHead;
|
|
6336
6328
|
} else {
|
|
6337
6329
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6338
|
-
var index_0 = this.
|
|
6339
|
-
var tail = positiveMod(this, this.
|
|
6330
|
+
var index_0 = this.ab_1;
|
|
6331
|
+
var tail = positiveMod(this, this.ya_1 + index_0 | 0);
|
|
6340
6332
|
if (internalIndex < tail) {
|
|
6341
|
-
var tmp0_2 = this.
|
|
6342
|
-
var tmp2_2 = this.
|
|
6333
|
+
var tmp0_2 = this.za_1;
|
|
6334
|
+
var tmp2_2 = this.za_1;
|
|
6343
6335
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6344
6336
|
var destinationOffset = internalIndex + 1 | 0;
|
|
6345
6337
|
arrayCopy(tmp0_2, tmp2_2, destinationOffset, internalIndex, tail);
|
|
6346
6338
|
} else {
|
|
6347
|
-
var tmp0_3 = this.
|
|
6339
|
+
var tmp0_3 = this.za_1;
|
|
6348
6340
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6349
|
-
var destination = this.
|
|
6341
|
+
var destination = this.za_1;
|
|
6350
6342
|
arrayCopy(tmp0_3, destination, 1, 0, tail);
|
|
6351
|
-
this.
|
|
6352
|
-
var tmp0_4 = this.
|
|
6353
|
-
var tmp2_3 = this.
|
|
6343
|
+
this.za_1[0] = this.za_1[this.za_1.length - 1 | 0];
|
|
6344
|
+
var tmp0_4 = this.za_1;
|
|
6345
|
+
var tmp2_3 = this.za_1;
|
|
6354
6346
|
var tmp4_1 = internalIndex + 1 | 0;
|
|
6355
6347
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6356
|
-
var endIndex_2 = this.
|
|
6348
|
+
var endIndex_2 = this.za_1.length - 1 | 0;
|
|
6357
6349
|
arrayCopy(tmp0_4, tmp2_3, tmp4_1, internalIndex, endIndex_2);
|
|
6358
6350
|
}
|
|
6359
|
-
this.
|
|
6351
|
+
this.za_1[internalIndex] = element;
|
|
6360
6352
|
}
|
|
6361
|
-
this.
|
|
6353
|
+
this.ab_1 = this.ab_1 + 1 | 0;
|
|
6362
6354
|
};
|
|
6363
6355
|
protoOf(ArrayDeque).r = function (elements) {
|
|
6364
6356
|
if (elements.o())
|
|
6365
6357
|
return false;
|
|
6366
6358
|
registerModification_0(this);
|
|
6367
|
-
ensureCapacity_0(this, this.
|
|
6359
|
+
ensureCapacity_0(this, this.ab_1 + elements.q() | 0);
|
|
6368
6360
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6369
|
-
var index = this.
|
|
6370
|
-
var tmp$ret$0 = positiveMod(this, this.
|
|
6361
|
+
var index = this.ab_1;
|
|
6362
|
+
var tmp$ret$0 = positiveMod(this, this.ya_1 + index | 0);
|
|
6371
6363
|
copyCollectionElements(this, tmp$ret$0, elements);
|
|
6372
6364
|
return true;
|
|
6373
6365
|
};
|
|
6374
6366
|
protoOf(ArrayDeque).p = function (index) {
|
|
6375
|
-
Companion_instance_5.a3(index, this.
|
|
6367
|
+
Companion_instance_5.a3(index, this.ab_1);
|
|
6376
6368
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6377
6369
|
// Inline function 'kotlin.collections.ArrayDeque.internalGet' call
|
|
6378
|
-
var internalIndex = positiveMod(this, this.
|
|
6379
|
-
var tmp = this.
|
|
6370
|
+
var internalIndex = positiveMod(this, this.ya_1 + index | 0);
|
|
6371
|
+
var tmp = this.za_1[internalIndex];
|
|
6380
6372
|
return (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
6381
6373
|
};
|
|
6382
6374
|
protoOf(ArrayDeque).c3 = function (index, element) {
|
|
6383
|
-
Companion_instance_5.a3(index, this.
|
|
6375
|
+
Companion_instance_5.a3(index, this.ab_1);
|
|
6384
6376
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6385
|
-
var internalIndex = positiveMod(this, this.
|
|
6377
|
+
var internalIndex = positiveMod(this, this.ya_1 + index | 0);
|
|
6386
6378
|
// Inline function 'kotlin.collections.ArrayDeque.internalGet' call
|
|
6387
|
-
var tmp = this.
|
|
6379
|
+
var tmp = this.za_1[internalIndex];
|
|
6388
6380
|
var oldElement = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
6389
|
-
this.
|
|
6381
|
+
this.za_1[internalIndex] = element;
|
|
6390
6382
|
return oldElement;
|
|
6391
6383
|
};
|
|
6392
6384
|
protoOf(ArrayDeque).t = function (element) {
|
|
@@ -6394,27 +6386,27 @@ protoOf(ArrayDeque).t = function (element) {
|
|
|
6394
6386
|
};
|
|
6395
6387
|
protoOf(ArrayDeque).u = function (element) {
|
|
6396
6388
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6397
|
-
var index = this.
|
|
6398
|
-
var tail = positiveMod(this, this.
|
|
6399
|
-
if (this.
|
|
6400
|
-
var inductionVariable = this.
|
|
6389
|
+
var index = this.ab_1;
|
|
6390
|
+
var tail = positiveMod(this, this.ya_1 + index | 0);
|
|
6391
|
+
if (this.ya_1 < tail) {
|
|
6392
|
+
var inductionVariable = this.ya_1;
|
|
6401
6393
|
if (inductionVariable < tail)
|
|
6402
6394
|
do {
|
|
6403
6395
|
var index_0 = inductionVariable;
|
|
6404
6396
|
inductionVariable = inductionVariable + 1 | 0;
|
|
6405
|
-
if (equals(element, this.
|
|
6406
|
-
return index_0 - this.
|
|
6397
|
+
if (equals(element, this.za_1[index_0]))
|
|
6398
|
+
return index_0 - this.ya_1 | 0;
|
|
6407
6399
|
}
|
|
6408
6400
|
while (inductionVariable < tail);
|
|
6409
|
-
} else if (this.
|
|
6410
|
-
var inductionVariable_0 = this.
|
|
6411
|
-
var last = this.
|
|
6401
|
+
} else if (this.ya_1 >= tail) {
|
|
6402
|
+
var inductionVariable_0 = this.ya_1;
|
|
6403
|
+
var last = this.za_1.length;
|
|
6412
6404
|
if (inductionVariable_0 < last)
|
|
6413
6405
|
do {
|
|
6414
6406
|
var index_1 = inductionVariable_0;
|
|
6415
6407
|
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
6416
|
-
if (equals(element, this.
|
|
6417
|
-
return index_1 - this.
|
|
6408
|
+
if (equals(element, this.za_1[index_1]))
|
|
6409
|
+
return index_1 - this.ya_1 | 0;
|
|
6418
6410
|
}
|
|
6419
6411
|
while (inductionVariable_0 < last);
|
|
6420
6412
|
var inductionVariable_1 = 0;
|
|
@@ -6422,121 +6414,121 @@ protoOf(ArrayDeque).u = function (element) {
|
|
|
6422
6414
|
do {
|
|
6423
6415
|
var index_2 = inductionVariable_1;
|
|
6424
6416
|
inductionVariable_1 = inductionVariable_1 + 1 | 0;
|
|
6425
|
-
if (equals(element, this.
|
|
6426
|
-
return (index_2 + this.
|
|
6417
|
+
if (equals(element, this.za_1[index_2]))
|
|
6418
|
+
return (index_2 + this.za_1.length | 0) - this.ya_1 | 0;
|
|
6427
6419
|
}
|
|
6428
6420
|
while (inductionVariable_1 < tail);
|
|
6429
6421
|
}
|
|
6430
6422
|
return -1;
|
|
6431
6423
|
};
|
|
6432
6424
|
protoOf(ArrayDeque).r3 = function (index) {
|
|
6433
|
-
Companion_instance_5.a3(index, this.
|
|
6425
|
+
Companion_instance_5.a3(index, this.ab_1);
|
|
6434
6426
|
if (index === get_lastIndex_0(this)) {
|
|
6435
|
-
return this.ib();
|
|
6436
|
-
} else if (index === 0) {
|
|
6437
6427
|
return this.hb();
|
|
6428
|
+
} else if (index === 0) {
|
|
6429
|
+
return this.gb();
|
|
6438
6430
|
}
|
|
6439
6431
|
registerModification_0(this);
|
|
6440
6432
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6441
|
-
var internalIndex = positiveMod(this, this.
|
|
6433
|
+
var internalIndex = positiveMod(this, this.ya_1 + index | 0);
|
|
6442
6434
|
// Inline function 'kotlin.collections.ArrayDeque.internalGet' call
|
|
6443
|
-
var tmp = this.
|
|
6435
|
+
var tmp = this.za_1[internalIndex];
|
|
6444
6436
|
var element = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
6445
|
-
if (index < this.
|
|
6446
|
-
if (internalIndex >= this.
|
|
6447
|
-
var tmp0 = this.
|
|
6448
|
-
var tmp2 = this.
|
|
6449
|
-
var tmp4 = this.
|
|
6437
|
+
if (index < this.ab_1 >> 1) {
|
|
6438
|
+
if (internalIndex >= this.ya_1) {
|
|
6439
|
+
var tmp0 = this.za_1;
|
|
6440
|
+
var tmp2 = this.za_1;
|
|
6441
|
+
var tmp4 = this.ya_1 + 1 | 0;
|
|
6450
6442
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6451
|
-
var startIndex = this.
|
|
6443
|
+
var startIndex = this.ya_1;
|
|
6452
6444
|
arrayCopy(tmp0, tmp2, tmp4, startIndex, internalIndex);
|
|
6453
6445
|
} else {
|
|
6454
|
-
var tmp0_0 = this.
|
|
6446
|
+
var tmp0_0 = this.za_1;
|
|
6455
6447
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6456
|
-
var destination = this.
|
|
6448
|
+
var destination = this.za_1;
|
|
6457
6449
|
arrayCopy(tmp0_0, destination, 1, 0, internalIndex);
|
|
6458
|
-
this.
|
|
6459
|
-
var tmp0_1 = this.
|
|
6460
|
-
var tmp2_0 = this.
|
|
6461
|
-
var tmp4_0 = this.
|
|
6462
|
-
var tmp6 = this.
|
|
6450
|
+
this.za_1[0] = this.za_1[this.za_1.length - 1 | 0];
|
|
6451
|
+
var tmp0_1 = this.za_1;
|
|
6452
|
+
var tmp2_0 = this.za_1;
|
|
6453
|
+
var tmp4_0 = this.ya_1 + 1 | 0;
|
|
6454
|
+
var tmp6 = this.ya_1;
|
|
6463
6455
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6464
|
-
var endIndex = this.
|
|
6456
|
+
var endIndex = this.za_1.length - 1 | 0;
|
|
6465
6457
|
arrayCopy(tmp0_1, tmp2_0, tmp4_0, tmp6, endIndex);
|
|
6466
6458
|
}
|
|
6467
|
-
this.
|
|
6468
|
-
this.
|
|
6459
|
+
this.za_1[this.ya_1] = null;
|
|
6460
|
+
this.ya_1 = incremented(this, this.ya_1);
|
|
6469
6461
|
} else {
|
|
6470
6462
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6471
6463
|
var index_0 = get_lastIndex_0(this);
|
|
6472
|
-
var internalLastIndex = positiveMod(this, this.
|
|
6464
|
+
var internalLastIndex = positiveMod(this, this.ya_1 + index_0 | 0);
|
|
6473
6465
|
if (internalIndex <= internalLastIndex) {
|
|
6474
|
-
var tmp0_2 = this.
|
|
6475
|
-
var tmp2_1 = this.
|
|
6466
|
+
var tmp0_2 = this.za_1;
|
|
6467
|
+
var tmp2_1 = this.za_1;
|
|
6476
6468
|
var tmp6_0 = internalIndex + 1 | 0;
|
|
6477
6469
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6478
6470
|
var endIndex_0 = internalLastIndex + 1 | 0;
|
|
6479
6471
|
arrayCopy(tmp0_2, tmp2_1, internalIndex, tmp6_0, endIndex_0);
|
|
6480
6472
|
} else {
|
|
6481
|
-
var tmp0_3 = this.
|
|
6482
|
-
var tmp2_2 = this.
|
|
6473
|
+
var tmp0_3 = this.za_1;
|
|
6474
|
+
var tmp2_2 = this.za_1;
|
|
6483
6475
|
var tmp6_1 = internalIndex + 1 | 0;
|
|
6484
6476
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6485
|
-
var endIndex_1 = this.
|
|
6477
|
+
var endIndex_1 = this.za_1.length;
|
|
6486
6478
|
arrayCopy(tmp0_3, tmp2_2, internalIndex, tmp6_1, endIndex_1);
|
|
6487
|
-
this.
|
|
6488
|
-
var tmp0_4 = this.
|
|
6489
|
-
var tmp2_3 = this.
|
|
6479
|
+
this.za_1[this.za_1.length - 1 | 0] = this.za_1[0];
|
|
6480
|
+
var tmp0_4 = this.za_1;
|
|
6481
|
+
var tmp2_3 = this.za_1;
|
|
6490
6482
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6491
6483
|
var endIndex_2 = internalLastIndex + 1 | 0;
|
|
6492
6484
|
arrayCopy(tmp0_4, tmp2_3, 0, 1, endIndex_2);
|
|
6493
6485
|
}
|
|
6494
|
-
this.
|
|
6486
|
+
this.za_1[internalLastIndex] = null;
|
|
6495
6487
|
}
|
|
6496
|
-
this.
|
|
6488
|
+
this.ab_1 = this.ab_1 - 1 | 0;
|
|
6497
6489
|
return element;
|
|
6498
6490
|
};
|
|
6499
|
-
protoOf(ArrayDeque).
|
|
6500
|
-
var tmp = array.length >= this.
|
|
6491
|
+
protoOf(ArrayDeque).ib = function (array) {
|
|
6492
|
+
var tmp = array.length >= this.ab_1 ? array : arrayOfNulls(array, this.ab_1);
|
|
6501
6493
|
var dest = isArray(tmp) ? tmp : THROW_CCE();
|
|
6502
6494
|
// Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
|
|
6503
|
-
var index = this.
|
|
6504
|
-
var tail = positiveMod(this, this.
|
|
6505
|
-
if (this.
|
|
6506
|
-
var tmp0 = this.
|
|
6495
|
+
var index = this.ab_1;
|
|
6496
|
+
var tail = positiveMod(this, this.ya_1 + index | 0);
|
|
6497
|
+
if (this.ya_1 < tail) {
|
|
6498
|
+
var tmp0 = this.za_1;
|
|
6507
6499
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6508
|
-
var startIndex = this.
|
|
6500
|
+
var startIndex = this.ya_1;
|
|
6509
6501
|
arrayCopy(tmp0, dest, 0, startIndex, tail);
|
|
6510
6502
|
} else {
|
|
6511
6503
|
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
6512
6504
|
if (!this.o()) {
|
|
6513
|
-
var tmp0_0 = this.
|
|
6514
|
-
var tmp6 = this.
|
|
6505
|
+
var tmp0_0 = this.za_1;
|
|
6506
|
+
var tmp6 = this.ya_1;
|
|
6515
6507
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6516
|
-
var endIndex = this.
|
|
6508
|
+
var endIndex = this.za_1.length;
|
|
6517
6509
|
arrayCopy(tmp0_0, dest, 0, tmp6, endIndex);
|
|
6518
|
-
var tmp0_1 = this.
|
|
6510
|
+
var tmp0_1 = this.za_1;
|
|
6519
6511
|
// Inline function 'kotlin.collections.copyInto' call
|
|
6520
|
-
var destinationOffset = this.
|
|
6512
|
+
var destinationOffset = this.za_1.length - this.ya_1 | 0;
|
|
6521
6513
|
arrayCopy(tmp0_1, dest, destinationOffset, 0, tail);
|
|
6522
6514
|
}
|
|
6523
6515
|
}
|
|
6524
|
-
var tmp_0 = terminateCollectionToArray(this.
|
|
6516
|
+
var tmp_0 = terminateCollectionToArray(this.ab_1, dest);
|
|
6525
6517
|
return isArray(tmp_0) ? tmp_0 : THROW_CCE();
|
|
6526
6518
|
};
|
|
6527
6519
|
protoOf(ArrayDeque).h4 = function () {
|
|
6528
6520
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
6529
|
-
var size = this.
|
|
6521
|
+
var size = this.ab_1;
|
|
6530
6522
|
var tmp$ret$0 = Array(size);
|
|
6531
|
-
return this.
|
|
6523
|
+
return this.ib(tmp$ret$0);
|
|
6532
6524
|
};
|
|
6533
6525
|
protoOf(ArrayDeque).toArray = function () {
|
|
6534
6526
|
return this.h4();
|
|
6535
6527
|
};
|
|
6536
6528
|
function ArrayDeque() {
|
|
6537
6529
|
Companion_getInstance_8();
|
|
6538
|
-
this.
|
|
6539
|
-
this.
|
|
6530
|
+
this.ya_1 = 0;
|
|
6531
|
+
this.ab_1 = 0;
|
|
6540
6532
|
}
|
|
6541
6533
|
function collectionToArrayCommonImpl(collection) {
|
|
6542
6534
|
if (collection.o()) {
|
|
@@ -6597,7 +6589,7 @@ function binarySearch(_this__u8e3s4, element, fromIndex, toIndex) {
|
|
|
6597
6589
|
}
|
|
6598
6590
|
function EmptyList() {
|
|
6599
6591
|
EmptyList_instance = this;
|
|
6600
|
-
this.
|
|
6592
|
+
this.jb_1 = new Long(-1478467534, -1720727600);
|
|
6601
6593
|
}
|
|
6602
6594
|
protoOf(EmptyList).equals = function (other) {
|
|
6603
6595
|
var tmp;
|
|
@@ -6620,7 +6612,7 @@ protoOf(EmptyList).q = function () {
|
|
|
6620
6612
|
protoOf(EmptyList).o = function () {
|
|
6621
6613
|
return true;
|
|
6622
6614
|
};
|
|
6623
|
-
protoOf(EmptyList).
|
|
6615
|
+
protoOf(EmptyList).kb = function (element) {
|
|
6624
6616
|
return false;
|
|
6625
6617
|
};
|
|
6626
6618
|
protoOf(EmptyList).t = function (element) {
|
|
@@ -6632,12 +6624,12 @@ protoOf(EmptyList).t = function (element) {
|
|
|
6632
6624
|
} else {
|
|
6633
6625
|
tmp = THROW_CCE();
|
|
6634
6626
|
}
|
|
6635
|
-
return this.
|
|
6627
|
+
return this.kb(tmp);
|
|
6636
6628
|
};
|
|
6637
6629
|
protoOf(EmptyList).p = function (index) {
|
|
6638
6630
|
throw IndexOutOfBoundsException_init_$Create$_0("Empty list doesn't contain element at index " + index + '.');
|
|
6639
6631
|
};
|
|
6640
|
-
protoOf(EmptyList).
|
|
6632
|
+
protoOf(EmptyList).lb = function (element) {
|
|
6641
6633
|
return -1;
|
|
6642
6634
|
};
|
|
6643
6635
|
protoOf(EmptyList).u = function (element) {
|
|
@@ -6649,7 +6641,7 @@ protoOf(EmptyList).u = function (element) {
|
|
|
6649
6641
|
} else {
|
|
6650
6642
|
tmp = THROW_CCE();
|
|
6651
6643
|
}
|
|
6652
|
-
return this.
|
|
6644
|
+
return this.lb(tmp);
|
|
6653
6645
|
};
|
|
6654
6646
|
protoOf(EmptyList).l = function () {
|
|
6655
6647
|
return EmptyIterator_instance;
|
|
@@ -6718,26 +6710,26 @@ function throwIndexOverflow() {
|
|
|
6718
6710
|
throw ArithmeticException_init_$Create$_0('Index overflow has happened.');
|
|
6719
6711
|
}
|
|
6720
6712
|
function ArrayAsCollection(values, isVarargs) {
|
|
6721
|
-
this.
|
|
6722
|
-
this.
|
|
6713
|
+
this.mb_1 = values;
|
|
6714
|
+
this.nb_1 = isVarargs;
|
|
6723
6715
|
}
|
|
6724
6716
|
protoOf(ArrayAsCollection).q = function () {
|
|
6725
|
-
return this.
|
|
6717
|
+
return this.mb_1.length;
|
|
6726
6718
|
};
|
|
6727
6719
|
protoOf(ArrayAsCollection).o = function () {
|
|
6728
6720
|
// Inline function 'kotlin.collections.isEmpty' call
|
|
6729
|
-
return this.
|
|
6721
|
+
return this.mb_1.length === 0;
|
|
6730
6722
|
};
|
|
6731
|
-
protoOf(ArrayAsCollection).
|
|
6732
|
-
return contains_2(this.
|
|
6723
|
+
protoOf(ArrayAsCollection).ob = function (element) {
|
|
6724
|
+
return contains_2(this.mb_1, element);
|
|
6733
6725
|
};
|
|
6734
6726
|
protoOf(ArrayAsCollection).t = function (element) {
|
|
6735
6727
|
if (!(element == null ? true : !(element == null)))
|
|
6736
6728
|
return false;
|
|
6737
|
-
return this.
|
|
6729
|
+
return this.ob((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
6738
6730
|
};
|
|
6739
6731
|
protoOf(ArrayAsCollection).l = function () {
|
|
6740
|
-
return arrayIterator(this.
|
|
6732
|
+
return arrayIterator(this.mb_1);
|
|
6741
6733
|
};
|
|
6742
6734
|
function flatten(_this__u8e3s4) {
|
|
6743
6735
|
var result = ArrayList_init_$Create$();
|
|
@@ -6791,7 +6783,7 @@ function toMap_0(_this__u8e3s4, destination) {
|
|
|
6791
6783
|
}
|
|
6792
6784
|
function EmptyMap() {
|
|
6793
6785
|
EmptyMap_instance = this;
|
|
6794
|
-
this.
|
|
6786
|
+
this.pb_1 = new Long(-888910638, 1920087921);
|
|
6795
6787
|
}
|
|
6796
6788
|
protoOf(EmptyMap).equals = function (other) {
|
|
6797
6789
|
var tmp;
|
|
@@ -6814,21 +6806,21 @@ protoOf(EmptyMap).q = function () {
|
|
|
6814
6806
|
protoOf(EmptyMap).o = function () {
|
|
6815
6807
|
return true;
|
|
6816
6808
|
};
|
|
6817
|
-
protoOf(EmptyMap).
|
|
6809
|
+
protoOf(EmptyMap).qb = function (key) {
|
|
6818
6810
|
return false;
|
|
6819
6811
|
};
|
|
6820
6812
|
protoOf(EmptyMap).y1 = function (key) {
|
|
6821
6813
|
if (!(key == null ? true : !(key == null)))
|
|
6822
6814
|
return false;
|
|
6823
|
-
return this.
|
|
6815
|
+
return this.qb((key == null ? true : !(key == null)) ? key : THROW_CCE());
|
|
6824
6816
|
};
|
|
6825
|
-
protoOf(EmptyMap).
|
|
6817
|
+
protoOf(EmptyMap).rb = function (key) {
|
|
6826
6818
|
return null;
|
|
6827
6819
|
};
|
|
6828
6820
|
protoOf(EmptyMap).z1 = function (key) {
|
|
6829
6821
|
if (!(key == null ? true : !(key == null)))
|
|
6830
6822
|
return null;
|
|
6831
|
-
return this.
|
|
6823
|
+
return this.rb((key == null ? true : !(key == null)) ? key : THROW_CCE());
|
|
6832
6824
|
};
|
|
6833
6825
|
protoOf(EmptyMap).b2 = function () {
|
|
6834
6826
|
return EmptySet_getInstance();
|
|
@@ -6848,8 +6840,8 @@ function putAll(_this__u8e3s4, pairs) {
|
|
|
6848
6840
|
while (inductionVariable < last) {
|
|
6849
6841
|
var _destruct__k2r9zo = pairs[inductionVariable];
|
|
6850
6842
|
inductionVariable = inductionVariable + 1 | 0;
|
|
6851
|
-
var key = _destruct__k2r9zo.
|
|
6852
|
-
var value = _destruct__k2r9zo.
|
|
6843
|
+
var key = _destruct__k2r9zo.ub();
|
|
6844
|
+
var value = _destruct__k2r9zo.vb();
|
|
6853
6845
|
_this__u8e3s4.z3(key, value);
|
|
6854
6846
|
}
|
|
6855
6847
|
}
|
|
@@ -6873,13 +6865,13 @@ function addAll(_this__u8e3s4, elements) {
|
|
|
6873
6865
|
function IntIterator() {
|
|
6874
6866
|
}
|
|
6875
6867
|
protoOf(IntIterator).n = function () {
|
|
6876
|
-
return this.
|
|
6868
|
+
return this.wb();
|
|
6877
6869
|
};
|
|
6878
6870
|
function SequenceScope() {
|
|
6879
6871
|
}
|
|
6880
6872
|
function iterator(block) {
|
|
6881
6873
|
var iterator = new SequenceBuilderIterator();
|
|
6882
|
-
iterator.
|
|
6874
|
+
iterator.bc_1 = createCoroutineUnintercepted(block, iterator, iterator);
|
|
6883
6875
|
return iterator;
|
|
6884
6876
|
}
|
|
6885
6877
|
function nextNotReady($this) {
|
|
@@ -6889,33 +6881,33 @@ function nextNotReady($this) {
|
|
|
6889
6881
|
return $this.n();
|
|
6890
6882
|
}
|
|
6891
6883
|
function exceptionalState($this) {
|
|
6892
|
-
switch ($this.
|
|
6884
|
+
switch ($this.yb_1) {
|
|
6893
6885
|
case 4:
|
|
6894
6886
|
return NoSuchElementException_init_$Create$();
|
|
6895
6887
|
case 5:
|
|
6896
6888
|
return IllegalStateException_init_$Create$_0('Iterator has failed.');
|
|
6897
6889
|
default:
|
|
6898
|
-
return IllegalStateException_init_$Create$_0('Unexpected state of the iterator: ' + $this.
|
|
6890
|
+
return IllegalStateException_init_$Create$_0('Unexpected state of the iterator: ' + $this.yb_1);
|
|
6899
6891
|
}
|
|
6900
6892
|
}
|
|
6901
6893
|
function SequenceBuilderIterator() {
|
|
6902
6894
|
SequenceScope.call(this);
|
|
6903
|
-
this.
|
|
6895
|
+
this.yb_1 = 0;
|
|
6896
|
+
this.zb_1 = null;
|
|
6904
6897
|
this.ac_1 = null;
|
|
6905
6898
|
this.bc_1 = null;
|
|
6906
|
-
this.cc_1 = null;
|
|
6907
6899
|
}
|
|
6908
6900
|
protoOf(SequenceBuilderIterator).m = function () {
|
|
6909
6901
|
while (true) {
|
|
6910
|
-
switch (this.
|
|
6902
|
+
switch (this.yb_1) {
|
|
6911
6903
|
case 0:
|
|
6912
6904
|
break;
|
|
6913
6905
|
case 1:
|
|
6914
|
-
if (ensureNotNull(this.
|
|
6915
|
-
this.
|
|
6906
|
+
if (ensureNotNull(this.ac_1).m()) {
|
|
6907
|
+
this.yb_1 = 2;
|
|
6916
6908
|
return true;
|
|
6917
6909
|
} else {
|
|
6918
|
-
this.
|
|
6910
|
+
this.ac_1 = null;
|
|
6919
6911
|
}
|
|
6920
6912
|
|
|
6921
6913
|
break;
|
|
@@ -6927,9 +6919,9 @@ protoOf(SequenceBuilderIterator).m = function () {
|
|
|
6927
6919
|
default:
|
|
6928
6920
|
throw exceptionalState(this);
|
|
6929
6921
|
}
|
|
6930
|
-
this.
|
|
6931
|
-
var step = ensureNotNull(this.
|
|
6932
|
-
this.
|
|
6922
|
+
this.yb_1 = 5;
|
|
6923
|
+
var step = ensureNotNull(this.bc_1);
|
|
6924
|
+
this.bc_1 = null;
|
|
6933
6925
|
// Inline function 'kotlin.coroutines.resume' call
|
|
6934
6926
|
// Inline function 'kotlin.Companion.success' call
|
|
6935
6927
|
var tmp$ret$0 = _Result___init__impl__xyqfz8(Unit_instance);
|
|
@@ -6937,39 +6929,39 @@ protoOf(SequenceBuilderIterator).m = function () {
|
|
|
6937
6929
|
}
|
|
6938
6930
|
};
|
|
6939
6931
|
protoOf(SequenceBuilderIterator).n = function () {
|
|
6940
|
-
switch (this.
|
|
6932
|
+
switch (this.yb_1) {
|
|
6941
6933
|
case 0:
|
|
6942
6934
|
case 1:
|
|
6943
6935
|
return nextNotReady(this);
|
|
6944
6936
|
case 2:
|
|
6945
|
-
this.
|
|
6946
|
-
return ensureNotNull(this.
|
|
6937
|
+
this.yb_1 = 1;
|
|
6938
|
+
return ensureNotNull(this.ac_1).n();
|
|
6947
6939
|
case 3:
|
|
6948
|
-
this.
|
|
6949
|
-
var tmp = this.
|
|
6940
|
+
this.yb_1 = 0;
|
|
6941
|
+
var tmp = this.zb_1;
|
|
6950
6942
|
var result = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
6951
|
-
this.
|
|
6943
|
+
this.zb_1 = null;
|
|
6952
6944
|
return result;
|
|
6953
6945
|
default:
|
|
6954
6946
|
throw exceptionalState(this);
|
|
6955
6947
|
}
|
|
6956
6948
|
};
|
|
6957
|
-
protoOf(SequenceBuilderIterator).
|
|
6958
|
-
this.
|
|
6959
|
-
this.
|
|
6960
|
-
this.
|
|
6949
|
+
protoOf(SequenceBuilderIterator).xb = function (value, $completion) {
|
|
6950
|
+
this.zb_1 = value;
|
|
6951
|
+
this.yb_1 = 3;
|
|
6952
|
+
this.bc_1 = $completion;
|
|
6961
6953
|
return get_COROUTINE_SUSPENDED();
|
|
6962
6954
|
};
|
|
6963
|
-
protoOf(SequenceBuilderIterator).
|
|
6955
|
+
protoOf(SequenceBuilderIterator).cc = function (result) {
|
|
6964
6956
|
// Inline function 'kotlin.getOrThrow' call
|
|
6965
6957
|
throwOnFailure(result);
|
|
6966
6958
|
var tmp = _Result___get_value__impl__bjfvqg(result);
|
|
6967
6959
|
if (!(tmp == null ? true : !(tmp == null)))
|
|
6968
6960
|
THROW_CCE();
|
|
6969
|
-
this.
|
|
6961
|
+
this.yb_1 = 4;
|
|
6970
6962
|
};
|
|
6971
6963
|
protoOf(SequenceBuilderIterator).r7 = function (result) {
|
|
6972
|
-
return this.
|
|
6964
|
+
return this.cc(result);
|
|
6973
6965
|
};
|
|
6974
6966
|
protoOf(SequenceBuilderIterator).m7 = function () {
|
|
6975
6967
|
return EmptyCoroutineContext_getInstance();
|
|
@@ -6978,61 +6970,61 @@ function emptySequence() {
|
|
|
6978
6970
|
return EmptySequence_instance;
|
|
6979
6971
|
}
|
|
6980
6972
|
function TransformingSequence$iterator$1(this$0) {
|
|
6981
|
-
this.
|
|
6982
|
-
this.
|
|
6973
|
+
this.ec_1 = this$0;
|
|
6974
|
+
this.dc_1 = this$0.fc_1.l();
|
|
6983
6975
|
}
|
|
6984
6976
|
protoOf(TransformingSequence$iterator$1).n = function () {
|
|
6985
|
-
return this.
|
|
6977
|
+
return this.ec_1.gc_1(this.dc_1.n());
|
|
6986
6978
|
};
|
|
6987
6979
|
protoOf(TransformingSequence$iterator$1).m = function () {
|
|
6988
|
-
return this.
|
|
6980
|
+
return this.dc_1.m();
|
|
6989
6981
|
};
|
|
6990
6982
|
function TransformingSequence(sequence, transformer) {
|
|
6991
|
-
this.
|
|
6992
|
-
this.
|
|
6983
|
+
this.fc_1 = sequence;
|
|
6984
|
+
this.gc_1 = transformer;
|
|
6993
6985
|
}
|
|
6994
6986
|
protoOf(TransformingSequence).l = function () {
|
|
6995
6987
|
return new TransformingSequence$iterator$1(this);
|
|
6996
6988
|
};
|
|
6997
6989
|
function calcNext($this) {
|
|
6998
|
-
while ($this.
|
|
6999
|
-
var item = $this.
|
|
7000
|
-
if ($this.
|
|
7001
|
-
$this.
|
|
7002
|
-
$this.
|
|
6990
|
+
while ($this.hc_1.m()) {
|
|
6991
|
+
var item = $this.hc_1.n();
|
|
6992
|
+
if ($this.kc_1.nc_1(item) === $this.kc_1.mc_1) {
|
|
6993
|
+
$this.jc_1 = item;
|
|
6994
|
+
$this.ic_1 = 1;
|
|
7003
6995
|
return Unit_instance;
|
|
7004
6996
|
}
|
|
7005
6997
|
}
|
|
7006
|
-
$this.
|
|
6998
|
+
$this.ic_1 = 0;
|
|
7007
6999
|
}
|
|
7008
7000
|
function FilteringSequence$iterator$1(this$0) {
|
|
7009
|
-
this.
|
|
7010
|
-
this.
|
|
7011
|
-
this.
|
|
7012
|
-
this.
|
|
7001
|
+
this.kc_1 = this$0;
|
|
7002
|
+
this.hc_1 = this$0.lc_1.l();
|
|
7003
|
+
this.ic_1 = -1;
|
|
7004
|
+
this.jc_1 = null;
|
|
7013
7005
|
}
|
|
7014
7006
|
protoOf(FilteringSequence$iterator$1).n = function () {
|
|
7015
|
-
if (this.
|
|
7007
|
+
if (this.ic_1 === -1) {
|
|
7016
7008
|
calcNext(this);
|
|
7017
7009
|
}
|
|
7018
|
-
if (this.
|
|
7010
|
+
if (this.ic_1 === 0)
|
|
7019
7011
|
throw NoSuchElementException_init_$Create$();
|
|
7020
|
-
var result = this.
|
|
7021
|
-
this.
|
|
7022
|
-
this.
|
|
7012
|
+
var result = this.jc_1;
|
|
7013
|
+
this.jc_1 = null;
|
|
7014
|
+
this.ic_1 = -1;
|
|
7023
7015
|
return (result == null ? true : !(result == null)) ? result : THROW_CCE();
|
|
7024
7016
|
};
|
|
7025
7017
|
protoOf(FilteringSequence$iterator$1).m = function () {
|
|
7026
|
-
if (this.
|
|
7018
|
+
if (this.ic_1 === -1) {
|
|
7027
7019
|
calcNext(this);
|
|
7028
7020
|
}
|
|
7029
|
-
return this.
|
|
7021
|
+
return this.ic_1 === 1;
|
|
7030
7022
|
};
|
|
7031
7023
|
function FilteringSequence(sequence, sendWhen, predicate) {
|
|
7032
7024
|
sendWhen = sendWhen === VOID ? true : sendWhen;
|
|
7033
|
-
this.
|
|
7034
|
-
this.
|
|
7035
|
-
this.
|
|
7025
|
+
this.lc_1 = sequence;
|
|
7026
|
+
this.mc_1 = sendWhen;
|
|
7027
|
+
this.nc_1 = predicate;
|
|
7036
7028
|
}
|
|
7037
7029
|
protoOf(FilteringSequence).l = function () {
|
|
7038
7030
|
return new FilteringSequence$iterator$1(this);
|
|
@@ -7055,62 +7047,62 @@ function generateSequence(seedFunction, nextFunction) {
|
|
|
7055
7047
|
return new GeneratorSequence(seedFunction, nextFunction);
|
|
7056
7048
|
}
|
|
7057
7049
|
function calcNext_0($this) {
|
|
7058
|
-
$this.
|
|
7059
|
-
$this.
|
|
7050
|
+
$this.oc_1 = $this.pc_1 === -2 ? $this.qc_1.rc_1() : $this.qc_1.sc_1(ensureNotNull($this.oc_1));
|
|
7051
|
+
$this.pc_1 = $this.oc_1 == null ? 0 : 1;
|
|
7060
7052
|
}
|
|
7061
7053
|
function GeneratorSequence$iterator$1(this$0) {
|
|
7062
|
-
this.
|
|
7063
|
-
this.
|
|
7064
|
-
this.
|
|
7054
|
+
this.qc_1 = this$0;
|
|
7055
|
+
this.oc_1 = null;
|
|
7056
|
+
this.pc_1 = -2;
|
|
7065
7057
|
}
|
|
7066
7058
|
protoOf(GeneratorSequence$iterator$1).n = function () {
|
|
7067
|
-
if (this.
|
|
7059
|
+
if (this.pc_1 < 0) {
|
|
7068
7060
|
calcNext_0(this);
|
|
7069
7061
|
}
|
|
7070
|
-
if (this.
|
|
7062
|
+
if (this.pc_1 === 0)
|
|
7071
7063
|
throw NoSuchElementException_init_$Create$();
|
|
7072
|
-
var tmp = this.
|
|
7064
|
+
var tmp = this.oc_1;
|
|
7073
7065
|
var result = !(tmp == null) ? tmp : THROW_CCE();
|
|
7074
|
-
this.
|
|
7066
|
+
this.pc_1 = -1;
|
|
7075
7067
|
return result;
|
|
7076
7068
|
};
|
|
7077
7069
|
protoOf(GeneratorSequence$iterator$1).m = function () {
|
|
7078
|
-
if (this.
|
|
7070
|
+
if (this.pc_1 < 0) {
|
|
7079
7071
|
calcNext_0(this);
|
|
7080
7072
|
}
|
|
7081
|
-
return this.
|
|
7073
|
+
return this.pc_1 === 1;
|
|
7082
7074
|
};
|
|
7083
7075
|
function GeneratorSequence(getInitialValue, getNextValue) {
|
|
7084
|
-
this.
|
|
7085
|
-
this.
|
|
7076
|
+
this.rc_1 = getInitialValue;
|
|
7077
|
+
this.sc_1 = getNextValue;
|
|
7086
7078
|
}
|
|
7087
7079
|
protoOf(GeneratorSequence).l = function () {
|
|
7088
7080
|
return new GeneratorSequence$iterator$1(this);
|
|
7089
7081
|
};
|
|
7090
7082
|
function TakeSequence$iterator$1(this$0) {
|
|
7091
|
-
this.
|
|
7092
|
-
this.
|
|
7083
|
+
this.tc_1 = this$0.wc_1;
|
|
7084
|
+
this.uc_1 = this$0.vc_1.l();
|
|
7093
7085
|
}
|
|
7094
7086
|
protoOf(TakeSequence$iterator$1).n = function () {
|
|
7095
|
-
if (this.
|
|
7087
|
+
if (this.tc_1 === 0)
|
|
7096
7088
|
throw NoSuchElementException_init_$Create$();
|
|
7097
|
-
this.
|
|
7098
|
-
return this.
|
|
7089
|
+
this.tc_1 = this.tc_1 - 1 | 0;
|
|
7090
|
+
return this.uc_1.n();
|
|
7099
7091
|
};
|
|
7100
7092
|
protoOf(TakeSequence$iterator$1).m = function () {
|
|
7101
|
-
return this.
|
|
7093
|
+
return this.tc_1 > 0 && this.uc_1.m();
|
|
7102
7094
|
};
|
|
7103
7095
|
function TakeSequence(sequence, count) {
|
|
7104
|
-
this.
|
|
7105
|
-
this.
|
|
7096
|
+
this.vc_1 = sequence;
|
|
7097
|
+
this.wc_1 = count;
|
|
7106
7098
|
// Inline function 'kotlin.require' call
|
|
7107
|
-
if (!(this.
|
|
7108
|
-
var message = 'count must be non-negative, but was ' + this.
|
|
7099
|
+
if (!(this.wc_1 >= 0)) {
|
|
7100
|
+
var message = 'count must be non-negative, but was ' + this.wc_1 + '.';
|
|
7109
7101
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
7110
7102
|
}
|
|
7111
7103
|
}
|
|
7112
7104
|
protoOf(TakeSequence).z = function (n) {
|
|
7113
|
-
return n >= this.
|
|
7105
|
+
return n >= this.wc_1 ? this : new TakeSequence(this.vc_1, n);
|
|
7114
7106
|
};
|
|
7115
7107
|
protoOf(TakeSequence).l = function () {
|
|
7116
7108
|
return new TakeSequence$iterator$1(this);
|
|
@@ -7133,7 +7125,7 @@ function optimizeReadOnlySet(_this__u8e3s4) {
|
|
|
7133
7125
|
}
|
|
7134
7126
|
function EmptySet() {
|
|
7135
7127
|
EmptySet_instance = this;
|
|
7136
|
-
this.
|
|
7128
|
+
this.xc_1 = new Long(1993859828, 793161749);
|
|
7137
7129
|
}
|
|
7138
7130
|
protoOf(EmptySet).equals = function (other) {
|
|
7139
7131
|
var tmp;
|
|
@@ -7156,7 +7148,7 @@ protoOf(EmptySet).q = function () {
|
|
|
7156
7148
|
protoOf(EmptySet).o = function () {
|
|
7157
7149
|
return true;
|
|
7158
7150
|
};
|
|
7159
|
-
protoOf(EmptySet).
|
|
7151
|
+
protoOf(EmptySet).kb = function (element) {
|
|
7160
7152
|
return false;
|
|
7161
7153
|
};
|
|
7162
7154
|
protoOf(EmptySet).t = function (element) {
|
|
@@ -7168,13 +7160,13 @@ protoOf(EmptySet).t = function (element) {
|
|
|
7168
7160
|
} else {
|
|
7169
7161
|
tmp = THROW_CCE();
|
|
7170
7162
|
}
|
|
7171
|
-
return this.
|
|
7163
|
+
return this.kb(tmp);
|
|
7172
7164
|
};
|
|
7173
|
-
protoOf(EmptySet).
|
|
7165
|
+
protoOf(EmptySet).yc = function (elements) {
|
|
7174
7166
|
return elements.o();
|
|
7175
7167
|
};
|
|
7176
7168
|
protoOf(EmptySet).v1 = function (elements) {
|
|
7177
|
-
return this.
|
|
7169
|
+
return this.yc(elements);
|
|
7178
7170
|
};
|
|
7179
7171
|
protoOf(EmptySet).l = function () {
|
|
7180
7172
|
return EmptyIterator_instance;
|
|
@@ -7226,12 +7218,12 @@ function compareValuesByImpl(a, b, selectors) {
|
|
|
7226
7218
|
}
|
|
7227
7219
|
function NaturalOrderComparator() {
|
|
7228
7220
|
}
|
|
7229
|
-
protoOf(NaturalOrderComparator).
|
|
7221
|
+
protoOf(NaturalOrderComparator).zc = function (a, b) {
|
|
7230
7222
|
return compareTo(a, b);
|
|
7231
7223
|
};
|
|
7232
7224
|
protoOf(NaturalOrderComparator).compare = function (a, b) {
|
|
7233
7225
|
var tmp = (!(a == null) ? isComparable(a) : false) ? a : THROW_CCE();
|
|
7234
|
-
return this.
|
|
7226
|
+
return this.zc(tmp, (!(b == null) ? isComparable(b) : false) ? b : THROW_CCE());
|
|
7235
7227
|
};
|
|
7236
7228
|
var NaturalOrderComparator_instance;
|
|
7237
7229
|
function NaturalOrderComparator_getInstance() {
|
|
@@ -7249,7 +7241,7 @@ function ContinuationInterceptor() {
|
|
|
7249
7241
|
}
|
|
7250
7242
|
function EmptyCoroutineContext() {
|
|
7251
7243
|
EmptyCoroutineContext_instance = this;
|
|
7252
|
-
this.
|
|
7244
|
+
this.ad_1 = new Long(0, 0);
|
|
7253
7245
|
}
|
|
7254
7246
|
protoOf(EmptyCoroutineContext).s7 = function (key) {
|
|
7255
7247
|
return null;
|
|
@@ -7293,37 +7285,37 @@ function enumEntries(entries) {
|
|
|
7293
7285
|
}
|
|
7294
7286
|
function EnumEntriesList(entries) {
|
|
7295
7287
|
AbstractList.call(this);
|
|
7296
|
-
this.
|
|
7288
|
+
this.bd_1 = entries;
|
|
7297
7289
|
}
|
|
7298
7290
|
protoOf(EnumEntriesList).q = function () {
|
|
7299
|
-
return this.
|
|
7291
|
+
return this.bd_1.length;
|
|
7300
7292
|
};
|
|
7301
7293
|
protoOf(EnumEntriesList).p = function (index) {
|
|
7302
|
-
Companion_instance_5.a3(index, this.
|
|
7303
|
-
return this.
|
|
7294
|
+
Companion_instance_5.a3(index, this.bd_1.length);
|
|
7295
|
+
return this.bd_1[index];
|
|
7304
7296
|
};
|
|
7305
|
-
protoOf(EnumEntriesList).
|
|
7297
|
+
protoOf(EnumEntriesList).cd = function (element) {
|
|
7306
7298
|
if (element === null)
|
|
7307
7299
|
return false;
|
|
7308
|
-
var target = getOrNull(this.
|
|
7300
|
+
var target = getOrNull(this.bd_1, element.d2_1);
|
|
7309
7301
|
return target === element;
|
|
7310
7302
|
};
|
|
7311
7303
|
protoOf(EnumEntriesList).t = function (element) {
|
|
7312
7304
|
if (!(element instanceof Enum))
|
|
7313
7305
|
return false;
|
|
7314
|
-
return this.
|
|
7306
|
+
return this.cd(element instanceof Enum ? element : THROW_CCE());
|
|
7315
7307
|
};
|
|
7316
|
-
protoOf(EnumEntriesList).
|
|
7308
|
+
protoOf(EnumEntriesList).dd = function (element) {
|
|
7317
7309
|
if (element === null)
|
|
7318
7310
|
return -1;
|
|
7319
7311
|
var ordinal = element.d2_1;
|
|
7320
|
-
var target = getOrNull(this.
|
|
7312
|
+
var target = getOrNull(this.bd_1, ordinal);
|
|
7321
7313
|
return target === element ? ordinal : -1;
|
|
7322
7314
|
};
|
|
7323
7315
|
protoOf(EnumEntriesList).u = function (element) {
|
|
7324
7316
|
if (!(element instanceof Enum))
|
|
7325
7317
|
return -1;
|
|
7326
|
-
return this.
|
|
7318
|
+
return this.dd(element instanceof Enum ? element : THROW_CCE());
|
|
7327
7319
|
};
|
|
7328
7320
|
function getProgressionLastElement(start, end, step) {
|
|
7329
7321
|
var tmp;
|
|
@@ -7358,53 +7350,53 @@ function IntRange(start, endInclusive) {
|
|
|
7358
7350
|
IntProgression.call(this, start, endInclusive, 1);
|
|
7359
7351
|
}
|
|
7360
7352
|
protoOf(IntRange).g1 = function () {
|
|
7361
|
-
return this.
|
|
7353
|
+
return this.ed_1;
|
|
7362
7354
|
};
|
|
7363
7355
|
protoOf(IntRange).h1 = function () {
|
|
7364
|
-
return this.
|
|
7356
|
+
return this.fd_1;
|
|
7365
7357
|
};
|
|
7366
|
-
protoOf(IntRange).
|
|
7367
|
-
return this.
|
|
7358
|
+
protoOf(IntRange).hd = function (value) {
|
|
7359
|
+
return this.ed_1 <= value && value <= this.fd_1;
|
|
7368
7360
|
};
|
|
7369
7361
|
protoOf(IntRange).y = function (value) {
|
|
7370
|
-
return this.
|
|
7362
|
+
return this.hd(typeof value === 'number' ? value : THROW_CCE());
|
|
7371
7363
|
};
|
|
7372
7364
|
protoOf(IntRange).o = function () {
|
|
7373
|
-
return this.
|
|
7365
|
+
return this.ed_1 > this.fd_1;
|
|
7374
7366
|
};
|
|
7375
7367
|
protoOf(IntRange).equals = function (other) {
|
|
7376
7368
|
var tmp;
|
|
7377
7369
|
if (other instanceof IntRange) {
|
|
7378
|
-
tmp = this.o() && other.o() || (this.
|
|
7370
|
+
tmp = this.o() && other.o() || (this.ed_1 === other.ed_1 && this.fd_1 === other.fd_1);
|
|
7379
7371
|
} else {
|
|
7380
7372
|
tmp = false;
|
|
7381
7373
|
}
|
|
7382
7374
|
return tmp;
|
|
7383
7375
|
};
|
|
7384
7376
|
protoOf(IntRange).hashCode = function () {
|
|
7385
|
-
return this.o() ? -1 : imul_0(31, this.
|
|
7377
|
+
return this.o() ? -1 : imul_0(31, this.ed_1) + this.fd_1 | 0;
|
|
7386
7378
|
};
|
|
7387
7379
|
protoOf(IntRange).toString = function () {
|
|
7388
|
-
return '' + this.
|
|
7380
|
+
return '' + this.ed_1 + '..' + this.fd_1;
|
|
7389
7381
|
};
|
|
7390
7382
|
function IntProgressionIterator(first, last, step) {
|
|
7391
7383
|
IntIterator.call(this);
|
|
7392
|
-
this.
|
|
7393
|
-
this.
|
|
7394
|
-
this.
|
|
7395
|
-
this.
|
|
7384
|
+
this.id_1 = step;
|
|
7385
|
+
this.jd_1 = last;
|
|
7386
|
+
this.kd_1 = this.id_1 > 0 ? first <= last : first >= last;
|
|
7387
|
+
this.ld_1 = this.kd_1 ? first : this.jd_1;
|
|
7396
7388
|
}
|
|
7397
7389
|
protoOf(IntProgressionIterator).m = function () {
|
|
7398
|
-
return this.
|
|
7390
|
+
return this.kd_1;
|
|
7399
7391
|
};
|
|
7400
|
-
protoOf(IntProgressionIterator).
|
|
7401
|
-
var value = this.
|
|
7402
|
-
if (value === this.
|
|
7403
|
-
if (!this.
|
|
7392
|
+
protoOf(IntProgressionIterator).wb = function () {
|
|
7393
|
+
var value = this.ld_1;
|
|
7394
|
+
if (value === this.jd_1) {
|
|
7395
|
+
if (!this.kd_1)
|
|
7404
7396
|
throw NoSuchElementException_init_$Create$();
|
|
7405
|
-
this.
|
|
7397
|
+
this.kd_1 = false;
|
|
7406
7398
|
} else {
|
|
7407
|
-
this.
|
|
7399
|
+
this.ld_1 = this.ld_1 + this.id_1 | 0;
|
|
7408
7400
|
}
|
|
7409
7401
|
return value;
|
|
7410
7402
|
};
|
|
@@ -7422,30 +7414,30 @@ function IntProgression(start, endInclusive, step) {
|
|
|
7422
7414
|
throw IllegalArgumentException_init_$Create$_0('Step must be non-zero.');
|
|
7423
7415
|
if (step === -2147483648)
|
|
7424
7416
|
throw IllegalArgumentException_init_$Create$_0('Step must be greater than Int.MIN_VALUE to avoid overflow on negation.');
|
|
7425
|
-
this.
|
|
7426
|
-
this.
|
|
7427
|
-
this.
|
|
7417
|
+
this.ed_1 = start;
|
|
7418
|
+
this.fd_1 = getProgressionLastElement(start, endInclusive, step);
|
|
7419
|
+
this.gd_1 = step;
|
|
7428
7420
|
}
|
|
7429
7421
|
protoOf(IntProgression).l = function () {
|
|
7430
|
-
return new IntProgressionIterator(this.
|
|
7422
|
+
return new IntProgressionIterator(this.ed_1, this.fd_1, this.gd_1);
|
|
7431
7423
|
};
|
|
7432
7424
|
protoOf(IntProgression).o = function () {
|
|
7433
|
-
return this.
|
|
7425
|
+
return this.gd_1 > 0 ? this.ed_1 > this.fd_1 : this.ed_1 < this.fd_1;
|
|
7434
7426
|
};
|
|
7435
7427
|
protoOf(IntProgression).equals = function (other) {
|
|
7436
7428
|
var tmp;
|
|
7437
7429
|
if (other instanceof IntProgression) {
|
|
7438
|
-
tmp = this.o() && other.o() || (this.
|
|
7430
|
+
tmp = this.o() && other.o() || (this.ed_1 === other.ed_1 && this.fd_1 === other.fd_1 && this.gd_1 === other.gd_1);
|
|
7439
7431
|
} else {
|
|
7440
7432
|
tmp = false;
|
|
7441
7433
|
}
|
|
7442
7434
|
return tmp;
|
|
7443
7435
|
};
|
|
7444
7436
|
protoOf(IntProgression).hashCode = function () {
|
|
7445
|
-
return this.o() ? -1 : imul_0(31, imul_0(31, this.
|
|
7437
|
+
return this.o() ? -1 : imul_0(31, imul_0(31, this.ed_1) + this.fd_1 | 0) + this.gd_1 | 0;
|
|
7446
7438
|
};
|
|
7447
7439
|
protoOf(IntProgression).toString = function () {
|
|
7448
|
-
return this.
|
|
7440
|
+
return this.gd_1 > 0 ? '' + this.ed_1 + '..' + this.fd_1 + ' step ' + this.gd_1 : '' + this.ed_1 + ' downTo ' + this.fd_1 + ' step ' + (-this.gd_1 | 0);
|
|
7449
7441
|
};
|
|
7450
7442
|
function ClosedRange() {
|
|
7451
7443
|
}
|
|
@@ -7907,9 +7899,9 @@ function indexOf_5(_this__u8e3s4, other, startIndex, endIndex, ignoreCase, last)
|
|
|
7907
7899
|
tmp = false;
|
|
7908
7900
|
}
|
|
7909
7901
|
if (tmp) {
|
|
7910
|
-
var inductionVariable = indices.
|
|
7911
|
-
var last_0 = indices.
|
|
7912
|
-
var step = indices.
|
|
7902
|
+
var inductionVariable = indices.ed_1;
|
|
7903
|
+
var last_0 = indices.fd_1;
|
|
7904
|
+
var step = indices.gd_1;
|
|
7913
7905
|
if (step > 0 && inductionVariable <= last_0 || (step < 0 && last_0 <= inductionVariable))
|
|
7914
7906
|
do {
|
|
7915
7907
|
var index = inductionVariable;
|
|
@@ -7919,9 +7911,9 @@ function indexOf_5(_this__u8e3s4, other, startIndex, endIndex, ignoreCase, last)
|
|
|
7919
7911
|
}
|
|
7920
7912
|
while (!(index === last_0));
|
|
7921
7913
|
} else {
|
|
7922
|
-
var inductionVariable_0 = indices.
|
|
7923
|
-
var last_1 = indices.
|
|
7924
|
-
var step_0 = indices.
|
|
7914
|
+
var inductionVariable_0 = indices.ed_1;
|
|
7915
|
+
var last_1 = indices.fd_1;
|
|
7916
|
+
var step_0 = indices.gd_1;
|
|
7925
7917
|
if (step_0 > 0 && inductionVariable_0 <= last_1 || (step_0 < 0 && last_1 <= inductionVariable_0))
|
|
7926
7918
|
do {
|
|
7927
7919
|
var index_0 = inductionVariable_0;
|
|
@@ -7942,73 +7934,73 @@ function requireNonNegativeLimit(limit) {
|
|
|
7942
7934
|
return Unit_instance;
|
|
7943
7935
|
}
|
|
7944
7936
|
function calcNext_1($this) {
|
|
7945
|
-
if ($this.
|
|
7946
|
-
$this.
|
|
7947
|
-
$this.
|
|
7937
|
+
if ($this.od_1 < 0) {
|
|
7938
|
+
$this.md_1 = 0;
|
|
7939
|
+
$this.pd_1 = null;
|
|
7948
7940
|
} else {
|
|
7949
7941
|
var tmp;
|
|
7950
7942
|
var tmp_0;
|
|
7951
|
-
if ($this.
|
|
7952
|
-
$this.
|
|
7953
|
-
tmp_0 = $this.
|
|
7943
|
+
if ($this.rd_1.ud_1 > 0) {
|
|
7944
|
+
$this.qd_1 = $this.qd_1 + 1 | 0;
|
|
7945
|
+
tmp_0 = $this.qd_1 >= $this.rd_1.ud_1;
|
|
7954
7946
|
} else {
|
|
7955
7947
|
tmp_0 = false;
|
|
7956
7948
|
}
|
|
7957
7949
|
if (tmp_0) {
|
|
7958
7950
|
tmp = true;
|
|
7959
7951
|
} else {
|
|
7960
|
-
tmp = $this.
|
|
7952
|
+
tmp = $this.od_1 > charSequenceLength($this.rd_1.sd_1);
|
|
7961
7953
|
}
|
|
7962
7954
|
if (tmp) {
|
|
7963
|
-
$this.
|
|
7964
|
-
$this.
|
|
7955
|
+
$this.pd_1 = numberRangeToNumber($this.nd_1, get_lastIndex_1($this.rd_1.sd_1));
|
|
7956
|
+
$this.od_1 = -1;
|
|
7965
7957
|
} else {
|
|
7966
|
-
var match = $this.
|
|
7958
|
+
var match = $this.rd_1.vd_1($this.rd_1.sd_1, $this.od_1);
|
|
7967
7959
|
if (match == null) {
|
|
7968
|
-
$this.
|
|
7969
|
-
$this.
|
|
7960
|
+
$this.pd_1 = numberRangeToNumber($this.nd_1, get_lastIndex_1($this.rd_1.sd_1));
|
|
7961
|
+
$this.od_1 = -1;
|
|
7970
7962
|
} else {
|
|
7971
|
-
var index = match.
|
|
7972
|
-
var length = match.
|
|
7973
|
-
$this.
|
|
7974
|
-
$this.
|
|
7975
|
-
$this.
|
|
7963
|
+
var index = match.ub();
|
|
7964
|
+
var length = match.vb();
|
|
7965
|
+
$this.pd_1 = until($this.nd_1, index);
|
|
7966
|
+
$this.nd_1 = index + length | 0;
|
|
7967
|
+
$this.od_1 = $this.nd_1 + (length === 0 ? 1 : 0) | 0;
|
|
7976
7968
|
}
|
|
7977
7969
|
}
|
|
7978
|
-
$this.
|
|
7970
|
+
$this.md_1 = 1;
|
|
7979
7971
|
}
|
|
7980
7972
|
}
|
|
7981
7973
|
function DelimitedRangesSequence$iterator$1(this$0) {
|
|
7982
|
-
this.
|
|
7983
|
-
this.
|
|
7984
|
-
this.
|
|
7985
|
-
this.
|
|
7986
|
-
this.
|
|
7987
|
-
this.
|
|
7974
|
+
this.rd_1 = this$0;
|
|
7975
|
+
this.md_1 = -1;
|
|
7976
|
+
this.nd_1 = coerceIn(this$0.td_1, 0, charSequenceLength(this$0.sd_1));
|
|
7977
|
+
this.od_1 = this.nd_1;
|
|
7978
|
+
this.pd_1 = null;
|
|
7979
|
+
this.qd_1 = 0;
|
|
7988
7980
|
}
|
|
7989
7981
|
protoOf(DelimitedRangesSequence$iterator$1).n = function () {
|
|
7990
|
-
if (this.
|
|
7982
|
+
if (this.md_1 === -1) {
|
|
7991
7983
|
calcNext_1(this);
|
|
7992
7984
|
}
|
|
7993
|
-
if (this.
|
|
7985
|
+
if (this.md_1 === 0)
|
|
7994
7986
|
throw NoSuchElementException_init_$Create$();
|
|
7995
|
-
var tmp = this.
|
|
7987
|
+
var tmp = this.pd_1;
|
|
7996
7988
|
var result = tmp instanceof IntRange ? tmp : THROW_CCE();
|
|
7997
|
-
this.
|
|
7998
|
-
this.
|
|
7989
|
+
this.pd_1 = null;
|
|
7990
|
+
this.md_1 = -1;
|
|
7999
7991
|
return result;
|
|
8000
7992
|
};
|
|
8001
7993
|
protoOf(DelimitedRangesSequence$iterator$1).m = function () {
|
|
8002
|
-
if (this.
|
|
7994
|
+
if (this.md_1 === -1) {
|
|
8003
7995
|
calcNext_1(this);
|
|
8004
7996
|
}
|
|
8005
|
-
return this.
|
|
7997
|
+
return this.md_1 === 1;
|
|
8006
7998
|
};
|
|
8007
7999
|
function DelimitedRangesSequence(input, startIndex, limit, getNextMatch) {
|
|
8008
|
-
this.
|
|
8009
|
-
this.
|
|
8010
|
-
this.
|
|
8011
|
-
this.
|
|
8000
|
+
this.sd_1 = input;
|
|
8001
|
+
this.td_1 = startIndex;
|
|
8002
|
+
this.ud_1 = limit;
|
|
8003
|
+
this.vd_1 = getNextMatch;
|
|
8012
8004
|
}
|
|
8013
8005
|
protoOf(DelimitedRangesSequence).l = function () {
|
|
8014
8006
|
return new DelimitedRangesSequence$iterator$1(this);
|
|
@@ -8021,9 +8013,9 @@ function findAnyOf(_this__u8e3s4, strings, startIndex, ignoreCase, last) {
|
|
|
8021
8013
|
}
|
|
8022
8014
|
var indices = !last ? numberRangeToNumber(coerceAtLeast(startIndex, 0), charSequenceLength(_this__u8e3s4)) : downTo(coerceAtMost(startIndex, get_lastIndex_1(_this__u8e3s4)), 0);
|
|
8023
8015
|
if (typeof _this__u8e3s4 === 'string') {
|
|
8024
|
-
var inductionVariable = indices.
|
|
8025
|
-
var last_0 = indices.
|
|
8026
|
-
var step = indices.
|
|
8016
|
+
var inductionVariable = indices.ed_1;
|
|
8017
|
+
var last_0 = indices.fd_1;
|
|
8018
|
+
var step = indices.gd_1;
|
|
8027
8019
|
if (step > 0 && inductionVariable <= last_0 || (step < 0 && last_0 <= inductionVariable))
|
|
8028
8020
|
do {
|
|
8029
8021
|
var index_0 = inductionVariable;
|
|
@@ -8047,9 +8039,9 @@ function findAnyOf(_this__u8e3s4, strings, startIndex, ignoreCase, last) {
|
|
|
8047
8039
|
}
|
|
8048
8040
|
while (!(index_0 === last_0));
|
|
8049
8041
|
} else {
|
|
8050
|
-
var inductionVariable_0 = indices.
|
|
8051
|
-
var last_1 = indices.
|
|
8052
|
-
var step_0 = indices.
|
|
8042
|
+
var inductionVariable_0 = indices.ed_1;
|
|
8043
|
+
var last_1 = indices.fd_1;
|
|
8044
|
+
var step_0 = indices.gd_1;
|
|
8053
8045
|
if (step_0 > 0 && inductionVariable_0 <= last_1 || (step_0 < 0 && last_1 <= inductionVariable_0))
|
|
8054
8046
|
do {
|
|
8055
8047
|
var index_1 = inductionVariable_0;
|
|
@@ -8109,7 +8101,7 @@ function rangesDelimitedBy$lambda_0($delimitersList, $ignoreCase) {
|
|
|
8109
8101
|
tmp = null;
|
|
8110
8102
|
} else {
|
|
8111
8103
|
// Inline function 'kotlin.let' call
|
|
8112
|
-
tmp = to(tmp0_safe_receiver.
|
|
8104
|
+
tmp = to(tmp0_safe_receiver.sb_1, tmp0_safe_receiver.tb_1.length);
|
|
8113
8105
|
}
|
|
8114
8106
|
return tmp;
|
|
8115
8107
|
};
|
|
@@ -8124,10 +8116,10 @@ var colonsInIsoOffsetString;
|
|
|
8124
8116
|
var asciiDigitsInIsoOffsetString;
|
|
8125
8117
|
function Companion_11() {
|
|
8126
8118
|
Companion_instance_11 = this;
|
|
8127
|
-
this.
|
|
8128
|
-
this.
|
|
8119
|
+
this.wd_1 = new Instant(new Long(342103040, -7347440), 0);
|
|
8120
|
+
this.xd_1 = new Instant(new Long(-90867457, 7347410), 999999999);
|
|
8129
8121
|
}
|
|
8130
|
-
protoOf(Companion_11).
|
|
8122
|
+
protoOf(Companion_11).yd = function (epochSeconds, nanosecondAdjustment) {
|
|
8131
8123
|
// Inline function 'kotlin.floorDiv' call
|
|
8132
8124
|
var other = new Long(1000000000, 0);
|
|
8133
8125
|
var q = divide(nanosecondAdjustment, other);
|
|
@@ -8139,14 +8131,14 @@ protoOf(Companion_11).zd = function (epochSeconds, nanosecondAdjustment) {
|
|
|
8139
8131
|
var b = q;
|
|
8140
8132
|
var sum = add(epochSeconds, b);
|
|
8141
8133
|
if (compare(bitwiseXor(epochSeconds, sum), new Long(0, 0)) < 0 && compare(bitwiseXor(epochSeconds, b), new Long(0, 0)) >= 0) {
|
|
8142
|
-
return compare(epochSeconds, new Long(0, 0)) > 0 ? Companion_getInstance_11().
|
|
8134
|
+
return compare(epochSeconds, new Long(0, 0)) > 0 ? Companion_getInstance_11().xd_1 : Companion_getInstance_11().wd_1;
|
|
8143
8135
|
}
|
|
8144
8136
|
var seconds = sum;
|
|
8145
8137
|
var tmp;
|
|
8146
8138
|
if (compare(seconds, new Long(342103040, -7347440)) < 0) {
|
|
8147
|
-
tmp = this.
|
|
8139
|
+
tmp = this.wd_1;
|
|
8148
8140
|
} else if (compare(seconds, new Long(-90867457, 7347410)) > 0) {
|
|
8149
|
-
tmp = this.
|
|
8141
|
+
tmp = this.xd_1;
|
|
8150
8142
|
} else {
|
|
8151
8143
|
// Inline function 'kotlin.mod' call
|
|
8152
8144
|
var other_0 = new Long(1000000000, 0);
|
|
@@ -8157,12 +8149,12 @@ protoOf(Companion_11).zd = function (epochSeconds, nanosecondAdjustment) {
|
|
|
8157
8149
|
}
|
|
8158
8150
|
return tmp;
|
|
8159
8151
|
};
|
|
8160
|
-
protoOf(Companion_11).
|
|
8152
|
+
protoOf(Companion_11).zd = function (epochSeconds, nanosecondAdjustment, $super) {
|
|
8161
8153
|
nanosecondAdjustment = nanosecondAdjustment === VOID ? new Long(0, 0) : nanosecondAdjustment;
|
|
8162
|
-
return $super === VOID ? this.
|
|
8154
|
+
return $super === VOID ? this.yd(epochSeconds, nanosecondAdjustment) : $super.yd.call(this, epochSeconds, nanosecondAdjustment);
|
|
8163
8155
|
};
|
|
8164
|
-
protoOf(Companion_11).
|
|
8165
|
-
return this.
|
|
8156
|
+
protoOf(Companion_11).ae = function (epochSeconds, nanosecondAdjustment) {
|
|
8157
|
+
return this.yd(epochSeconds, fromInt(nanosecondAdjustment));
|
|
8166
8158
|
};
|
|
8167
8159
|
var Companion_instance_11;
|
|
8168
8160
|
function Companion_getInstance_11() {
|
|
@@ -8172,18 +8164,18 @@ function Companion_getInstance_11() {
|
|
|
8172
8164
|
}
|
|
8173
8165
|
function Instant(epochSeconds, nanosecondsOfSecond) {
|
|
8174
8166
|
Companion_getInstance_11();
|
|
8175
|
-
this.
|
|
8176
|
-
this.
|
|
8177
|
-
var containsArg = this.
|
|
8167
|
+
this.be_1 = epochSeconds;
|
|
8168
|
+
this.ce_1 = nanosecondsOfSecond;
|
|
8169
|
+
var containsArg = this.be_1;
|
|
8178
8170
|
// Inline function 'kotlin.require' call
|
|
8179
8171
|
if (!(compare(new Long(342103040, -7347440), containsArg) <= 0 ? compare(containsArg, new Long(-90867457, 7347410)) <= 0 : false)) {
|
|
8180
8172
|
var message = 'Instant exceeds minimum or maximum instant';
|
|
8181
8173
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
8182
8174
|
}
|
|
8183
8175
|
}
|
|
8184
|
-
protoOf(Instant).
|
|
8185
|
-
if (compare(this.
|
|
8186
|
-
var tmp0 = this.
|
|
8176
|
+
protoOf(Instant).de = function () {
|
|
8177
|
+
if (compare(this.be_1, new Long(0, 0)) >= 0) {
|
|
8178
|
+
var tmp0 = this.be_1;
|
|
8187
8179
|
var tmp2 = new Long(1000, 0);
|
|
8188
8180
|
var tmp$ret$0;
|
|
8189
8181
|
$l$block_1: {
|
|
@@ -8208,7 +8200,7 @@ protoOf(Instant).ee = function () {
|
|
|
8208
8200
|
}
|
|
8209
8201
|
var millis = tmp$ret$0;
|
|
8210
8202
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
8211
|
-
var b = fromInt(this.
|
|
8203
|
+
var b = fromInt(this.ce_1 / 1000000 | 0);
|
|
8212
8204
|
var sum = add(millis, b);
|
|
8213
8205
|
if (compare(bitwiseXor(millis, sum), new Long(0, 0)) < 0 && compare(bitwiseXor(millis, b), new Long(0, 0)) >= 0) {
|
|
8214
8206
|
return new Long(-1, 2147483647);
|
|
@@ -8216,7 +8208,7 @@ protoOf(Instant).ee = function () {
|
|
|
8216
8208
|
return sum;
|
|
8217
8209
|
} else {
|
|
8218
8210
|
// Inline function 'kotlin.Long.plus' call
|
|
8219
|
-
var this_0 = this.
|
|
8211
|
+
var this_0 = this.be_1;
|
|
8220
8212
|
var tmp0_0 = add(this_0, fromInt(1));
|
|
8221
8213
|
var tmp2_0 = new Long(1000, 0);
|
|
8222
8214
|
var tmp$ret$3;
|
|
@@ -8242,7 +8234,7 @@ protoOf(Instant).ee = function () {
|
|
|
8242
8234
|
}
|
|
8243
8235
|
var millis_0 = tmp$ret$3;
|
|
8244
8236
|
// Inline function 'kotlin.time.safeAddOrElse' call
|
|
8245
|
-
var b_0 = fromInt((this.
|
|
8237
|
+
var b_0 = fromInt((this.ce_1 / 1000000 | 0) - 1000 | 0);
|
|
8246
8238
|
var sum_0 = add(millis_0, b_0);
|
|
8247
8239
|
if (compare(bitwiseXor(millis_0, sum_0), new Long(0, 0)) < 0 && compare(bitwiseXor(millis_0, b_0), new Long(0, 0)) >= 0) {
|
|
8248
8240
|
return new Long(0, -2147483648);
|
|
@@ -8250,15 +8242,15 @@ protoOf(Instant).ee = function () {
|
|
|
8250
8242
|
return sum_0;
|
|
8251
8243
|
}
|
|
8252
8244
|
};
|
|
8253
|
-
protoOf(Instant).
|
|
8254
|
-
var s = this.
|
|
8245
|
+
protoOf(Instant).ee = function (other) {
|
|
8246
|
+
var s = this.be_1.n2(other.be_1);
|
|
8255
8247
|
if (!(s === 0)) {
|
|
8256
8248
|
return s;
|
|
8257
8249
|
}
|
|
8258
|
-
return compareTo(this.
|
|
8250
|
+
return compareTo(this.ce_1, other.ce_1);
|
|
8259
8251
|
};
|
|
8260
8252
|
protoOf(Instant).d = function (other) {
|
|
8261
|
-
return this.
|
|
8253
|
+
return this.ee(other instanceof Instant ? other : THROW_CCE());
|
|
8262
8254
|
};
|
|
8263
8255
|
protoOf(Instant).equals = function (other) {
|
|
8264
8256
|
var tmp;
|
|
@@ -8268,12 +8260,12 @@ protoOf(Instant).equals = function (other) {
|
|
|
8268
8260
|
var tmp_0;
|
|
8269
8261
|
var tmp_1;
|
|
8270
8262
|
if (other instanceof Instant) {
|
|
8271
|
-
tmp_1 = equalsLong(this.
|
|
8263
|
+
tmp_1 = equalsLong(this.be_1, other.be_1);
|
|
8272
8264
|
} else {
|
|
8273
8265
|
tmp_1 = false;
|
|
8274
8266
|
}
|
|
8275
8267
|
if (tmp_1) {
|
|
8276
|
-
tmp_0 = this.
|
|
8268
|
+
tmp_0 = this.ce_1 === other.ce_1;
|
|
8277
8269
|
} else {
|
|
8278
8270
|
tmp_0 = false;
|
|
8279
8271
|
}
|
|
@@ -8282,7 +8274,7 @@ protoOf(Instant).equals = function (other) {
|
|
|
8282
8274
|
return tmp;
|
|
8283
8275
|
};
|
|
8284
8276
|
protoOf(Instant).hashCode = function () {
|
|
8285
|
-
return this.
|
|
8277
|
+
return this.be_1.hashCode() + imul_0(51, this.ce_1) | 0;
|
|
8286
8278
|
};
|
|
8287
8279
|
protoOf(Instant).toString = function () {
|
|
8288
8280
|
return formatIso(this);
|
|
@@ -8292,9 +8284,9 @@ function formatIso(instant) {
|
|
|
8292
8284
|
// Inline function 'kotlin.text.buildString' call
|
|
8293
8285
|
// Inline function 'kotlin.apply' call
|
|
8294
8286
|
var this_0 = StringBuilder_init_$Create$_1();
|
|
8295
|
-
var ldt = Companion_instance_12.
|
|
8287
|
+
var ldt = Companion_instance_12.fe(instant);
|
|
8296
8288
|
// Inline function 'kotlin.run' call
|
|
8297
|
-
var number = ldt.
|
|
8289
|
+
var number = ldt.ge_1;
|
|
8298
8290
|
var tmp;
|
|
8299
8291
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
8300
8292
|
if (abs_0(number) < 1000) {
|
|
@@ -8314,23 +8306,23 @@ function formatIso(instant) {
|
|
|
8314
8306
|
tmp = this_0.j9(number);
|
|
8315
8307
|
}
|
|
8316
8308
|
this_0.o6(_Char___init__impl__6a9atx(45));
|
|
8317
|
-
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.
|
|
8309
|
+
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.he_1);
|
|
8318
8310
|
this_0.o6(_Char___init__impl__6a9atx(45));
|
|
8319
|
-
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.
|
|
8311
|
+
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.ie_1);
|
|
8320
8312
|
this_0.o6(_Char___init__impl__6a9atx(84));
|
|
8313
|
+
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.je_1);
|
|
8314
|
+
this_0.o6(_Char___init__impl__6a9atx(58));
|
|
8321
8315
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.ke_1);
|
|
8322
8316
|
this_0.o6(_Char___init__impl__6a9atx(58));
|
|
8323
8317
|
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.le_1);
|
|
8324
|
-
|
|
8325
|
-
formatIso$_anonymous_$appendTwoDigits_ydzygl(this_0, this_0, ldt.me_1);
|
|
8326
|
-
if (!(ldt.ne_1 === 0)) {
|
|
8318
|
+
if (!(ldt.me_1 === 0)) {
|
|
8327
8319
|
this_0.o6(_Char___init__impl__6a9atx(46));
|
|
8328
8320
|
var zerosToStrip = 0;
|
|
8329
|
-
while ((ldt.
|
|
8321
|
+
while ((ldt.me_1 % get_POWERS_OF_TEN()[zerosToStrip + 1 | 0] | 0) === 0) {
|
|
8330
8322
|
zerosToStrip = zerosToStrip + 1 | 0;
|
|
8331
8323
|
}
|
|
8332
8324
|
zerosToStrip = zerosToStrip - (zerosToStrip % 3 | 0) | 0;
|
|
8333
|
-
var numberToOutput = ldt.
|
|
8325
|
+
var numberToOutput = ldt.me_1 / get_POWERS_OF_TEN()[zerosToStrip] | 0;
|
|
8334
8326
|
this_0.n6(substring_0((numberToOutput + get_POWERS_OF_TEN()[9 - zerosToStrip | 0] | 0).toString(), 1));
|
|
8335
8327
|
}
|
|
8336
8328
|
this_0.o6(_Char___init__impl__6a9atx(90));
|
|
@@ -8338,8 +8330,8 @@ function formatIso(instant) {
|
|
|
8338
8330
|
}
|
|
8339
8331
|
function Companion_12() {
|
|
8340
8332
|
}
|
|
8341
|
-
protoOf(Companion_12).
|
|
8342
|
-
var localSecond = instant.
|
|
8333
|
+
protoOf(Companion_12).fe = function (instant) {
|
|
8334
|
+
var localSecond = instant.be_1;
|
|
8343
8335
|
// Inline function 'kotlin.floorDiv' call
|
|
8344
8336
|
var other = new Long(86400, 0);
|
|
8345
8337
|
var q = divide(localSecond, other);
|
|
@@ -8430,23 +8422,23 @@ protoOf(Companion_12).ge = function (instant) {
|
|
|
8430
8422
|
var secondWithoutHours = secsOfDay - imul_0(hours, 3600) | 0;
|
|
8431
8423
|
var minutes = secondWithoutHours / 60 | 0;
|
|
8432
8424
|
var second = secondWithoutHours - imul_0(minutes, 60) | 0;
|
|
8433
|
-
return new UnboundLocalDateTime(year, month, day, hours, minutes, second, instant.
|
|
8425
|
+
return new UnboundLocalDateTime(year, month, day, hours, minutes, second, instant.ce_1);
|
|
8434
8426
|
};
|
|
8435
8427
|
var Companion_instance_12;
|
|
8436
8428
|
function Companion_getInstance_12() {
|
|
8437
8429
|
return Companion_instance_12;
|
|
8438
8430
|
}
|
|
8439
8431
|
function UnboundLocalDateTime(year, month, day, hour, minute, second, nanosecond) {
|
|
8440
|
-
this.
|
|
8441
|
-
this.
|
|
8442
|
-
this.
|
|
8443
|
-
this.
|
|
8444
|
-
this.
|
|
8445
|
-
this.
|
|
8446
|
-
this.
|
|
8432
|
+
this.ge_1 = year;
|
|
8433
|
+
this.he_1 = month;
|
|
8434
|
+
this.ie_1 = day;
|
|
8435
|
+
this.je_1 = hour;
|
|
8436
|
+
this.ke_1 = minute;
|
|
8437
|
+
this.le_1 = second;
|
|
8438
|
+
this.me_1 = nanosecond;
|
|
8447
8439
|
}
|
|
8448
8440
|
protoOf(UnboundLocalDateTime).toString = function () {
|
|
8449
|
-
return 'UnboundLocalDateTime(' + this.
|
|
8441
|
+
return 'UnboundLocalDateTime(' + this.ge_1 + '-' + this.he_1 + '-' + this.ie_1 + ' ' + this.je_1 + ':' + this.ke_1 + ':' + this.le_1 + '.' + this.me_1 + ')';
|
|
8450
8442
|
};
|
|
8451
8443
|
function formatIso$_anonymous_$appendTwoDigits_ydzygl(_this__u8e3s4, $this_buildString, number) {
|
|
8452
8444
|
if (number < 10) {
|
|
@@ -8469,22 +8461,22 @@ function _init_properties_Instant_kt__2myitt() {
|
|
|
8469
8461
|
}
|
|
8470
8462
|
}
|
|
8471
8463
|
function UnsafeLazyImpl(initializer) {
|
|
8472
|
-
this.
|
|
8473
|
-
this.
|
|
8464
|
+
this.ne_1 = initializer;
|
|
8465
|
+
this.oe_1 = UNINITIALIZED_VALUE_instance;
|
|
8474
8466
|
}
|
|
8475
8467
|
protoOf(UnsafeLazyImpl).x1 = function () {
|
|
8476
|
-
if (this.
|
|
8477
|
-
this.
|
|
8478
|
-
this.
|
|
8468
|
+
if (this.oe_1 === UNINITIALIZED_VALUE_instance) {
|
|
8469
|
+
this.oe_1 = ensureNotNull(this.ne_1)();
|
|
8470
|
+
this.ne_1 = null;
|
|
8479
8471
|
}
|
|
8480
|
-
var tmp = this.
|
|
8472
|
+
var tmp = this.oe_1;
|
|
8481
8473
|
return (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
8482
8474
|
};
|
|
8483
|
-
protoOf(UnsafeLazyImpl).
|
|
8484
|
-
return !(this.
|
|
8475
|
+
protoOf(UnsafeLazyImpl).pe = function () {
|
|
8476
|
+
return !(this.oe_1 === UNINITIALIZED_VALUE_instance);
|
|
8485
8477
|
};
|
|
8486
8478
|
protoOf(UnsafeLazyImpl).toString = function () {
|
|
8487
|
-
return this.
|
|
8479
|
+
return this.pe() ? toString_0(this.x1()) : 'Lazy value not initialized yet.';
|
|
8488
8480
|
};
|
|
8489
8481
|
function UNINITIALIZED_VALUE() {
|
|
8490
8482
|
}
|
|
@@ -8505,7 +8497,7 @@ function _Result___get_isFailure__impl__jpiriv($this) {
|
|
|
8505
8497
|
function Result__exceptionOrNull_impl_p6xea9($this) {
|
|
8506
8498
|
var tmp;
|
|
8507
8499
|
if (_Result___get_value__impl__bjfvqg($this) instanceof Failure) {
|
|
8508
|
-
tmp = _Result___get_value__impl__bjfvqg($this).
|
|
8500
|
+
tmp = _Result___get_value__impl__bjfvqg($this).qe_1;
|
|
8509
8501
|
} else {
|
|
8510
8502
|
tmp = null;
|
|
8511
8503
|
}
|
|
@@ -8518,22 +8510,22 @@ function Companion_getInstance_13() {
|
|
|
8518
8510
|
return Companion_instance_13;
|
|
8519
8511
|
}
|
|
8520
8512
|
function Failure(exception) {
|
|
8521
|
-
this.
|
|
8513
|
+
this.qe_1 = exception;
|
|
8522
8514
|
}
|
|
8523
8515
|
protoOf(Failure).equals = function (other) {
|
|
8524
8516
|
var tmp;
|
|
8525
8517
|
if (other instanceof Failure) {
|
|
8526
|
-
tmp = equals(this.
|
|
8518
|
+
tmp = equals(this.qe_1, other.qe_1);
|
|
8527
8519
|
} else {
|
|
8528
8520
|
tmp = false;
|
|
8529
8521
|
}
|
|
8530
8522
|
return tmp;
|
|
8531
8523
|
};
|
|
8532
8524
|
protoOf(Failure).hashCode = function () {
|
|
8533
|
-
return hashCode_0(this.
|
|
8525
|
+
return hashCode_0(this.qe_1);
|
|
8534
8526
|
};
|
|
8535
8527
|
protoOf(Failure).toString = function () {
|
|
8536
|
-
return 'Failure(' + this.
|
|
8528
|
+
return 'Failure(' + this.qe_1.toString() + ')';
|
|
8537
8529
|
};
|
|
8538
8530
|
function createFailure(exception) {
|
|
8539
8531
|
return new Failure(exception);
|
|
@@ -8541,7 +8533,7 @@ function createFailure(exception) {
|
|
|
8541
8533
|
function throwOnFailure(_this__u8e3s4) {
|
|
8542
8534
|
var tmp = _Result___get_value__impl__bjfvqg(_this__u8e3s4);
|
|
8543
8535
|
if (tmp instanceof Failure)
|
|
8544
|
-
throw _Result___get_value__impl__bjfvqg(_this__u8e3s4).
|
|
8536
|
+
throw _Result___get_value__impl__bjfvqg(_this__u8e3s4).qe_1;
|
|
8545
8537
|
}
|
|
8546
8538
|
function NotImplementedError(message) {
|
|
8547
8539
|
message = message === VOID ? 'An operation is not implemented.' : message;
|
|
@@ -8549,21 +8541,21 @@ function NotImplementedError(message) {
|
|
|
8549
8541
|
captureStack(this, NotImplementedError);
|
|
8550
8542
|
}
|
|
8551
8543
|
function Pair(first, second) {
|
|
8552
|
-
this.
|
|
8553
|
-
this.
|
|
8544
|
+
this.sb_1 = first;
|
|
8545
|
+
this.tb_1 = second;
|
|
8554
8546
|
}
|
|
8555
8547
|
protoOf(Pair).toString = function () {
|
|
8556
|
-
return '(' + toString_0(this.
|
|
8548
|
+
return '(' + toString_0(this.sb_1) + ', ' + toString_0(this.tb_1) + ')';
|
|
8549
|
+
};
|
|
8550
|
+
protoOf(Pair).ub = function () {
|
|
8551
|
+
return this.sb_1;
|
|
8557
8552
|
};
|
|
8558
8553
|
protoOf(Pair).vb = function () {
|
|
8559
8554
|
return this.tb_1;
|
|
8560
8555
|
};
|
|
8561
|
-
protoOf(Pair).wb = function () {
|
|
8562
|
-
return this.ub_1;
|
|
8563
|
-
};
|
|
8564
8556
|
protoOf(Pair).hashCode = function () {
|
|
8565
|
-
var result = this.
|
|
8566
|
-
result = imul_0(result, 31) + (this.
|
|
8557
|
+
var result = this.sb_1 == null ? 0 : hashCode_0(this.sb_1);
|
|
8558
|
+
result = imul_0(result, 31) + (this.tb_1 == null ? 0 : hashCode_0(this.tb_1)) | 0;
|
|
8567
8559
|
return result;
|
|
8568
8560
|
};
|
|
8569
8561
|
protoOf(Pair).equals = function (other) {
|
|
@@ -8571,9 +8563,9 @@ protoOf(Pair).equals = function (other) {
|
|
|
8571
8563
|
return true;
|
|
8572
8564
|
if (!(other instanceof Pair))
|
|
8573
8565
|
return false;
|
|
8574
|
-
if (!equals(this.
|
|
8566
|
+
if (!equals(this.sb_1, other.sb_1))
|
|
8575
8567
|
return false;
|
|
8576
|
-
if (!equals(this.
|
|
8568
|
+
if (!equals(this.tb_1, other.tb_1))
|
|
8577
8569
|
return false;
|
|
8578
8570
|
return true;
|
|
8579
8571
|
};
|
|
@@ -8581,26 +8573,26 @@ function to(_this__u8e3s4, that) {
|
|
|
8581
8573
|
return new Pair(_this__u8e3s4, that);
|
|
8582
8574
|
}
|
|
8583
8575
|
function Triple(first, second, third) {
|
|
8584
|
-
this.
|
|
8585
|
-
this.
|
|
8586
|
-
this.
|
|
8576
|
+
this.re_1 = first;
|
|
8577
|
+
this.se_1 = second;
|
|
8578
|
+
this.te_1 = third;
|
|
8587
8579
|
}
|
|
8588
8580
|
protoOf(Triple).toString = function () {
|
|
8589
|
-
return '(' + toString_0(this.
|
|
8581
|
+
return '(' + toString_0(this.re_1) + ', ' + toString_0(this.se_1) + ', ' + toString_0(this.te_1) + ')';
|
|
8582
|
+
};
|
|
8583
|
+
protoOf(Triple).ub = function () {
|
|
8584
|
+
return this.re_1;
|
|
8590
8585
|
};
|
|
8591
8586
|
protoOf(Triple).vb = function () {
|
|
8592
8587
|
return this.se_1;
|
|
8593
8588
|
};
|
|
8594
|
-
protoOf(Triple).
|
|
8589
|
+
protoOf(Triple).ue = function () {
|
|
8595
8590
|
return this.te_1;
|
|
8596
8591
|
};
|
|
8597
|
-
protoOf(Triple).ve = function () {
|
|
8598
|
-
return this.ue_1;
|
|
8599
|
-
};
|
|
8600
8592
|
protoOf(Triple).hashCode = function () {
|
|
8601
|
-
var result = this.
|
|
8593
|
+
var result = this.re_1 == null ? 0 : hashCode_0(this.re_1);
|
|
8594
|
+
result = imul_0(result, 31) + (this.se_1 == null ? 0 : hashCode_0(this.se_1)) | 0;
|
|
8602
8595
|
result = imul_0(result, 31) + (this.te_1 == null ? 0 : hashCode_0(this.te_1)) | 0;
|
|
8603
|
-
result = imul_0(result, 31) + (this.ue_1 == null ? 0 : hashCode_0(this.ue_1)) | 0;
|
|
8604
8596
|
return result;
|
|
8605
8597
|
};
|
|
8606
8598
|
protoOf(Triple).equals = function (other) {
|
|
@@ -8608,12 +8600,12 @@ protoOf(Triple).equals = function (other) {
|
|
|
8608
8600
|
return true;
|
|
8609
8601
|
if (!(other instanceof Triple))
|
|
8610
8602
|
return false;
|
|
8603
|
+
if (!equals(this.re_1, other.re_1))
|
|
8604
|
+
return false;
|
|
8611
8605
|
if (!equals(this.se_1, other.se_1))
|
|
8612
8606
|
return false;
|
|
8613
8607
|
if (!equals(this.te_1, other.te_1))
|
|
8614
8608
|
return false;
|
|
8615
|
-
if (!equals(this.ue_1, other.ue_1))
|
|
8616
|
-
return false;
|
|
8617
8609
|
return true;
|
|
8618
8610
|
};
|
|
8619
8611
|
function _UByte___get_data__impl__jof9qr($this) {
|
|
@@ -8629,10 +8621,10 @@ function _UInt___get_data__impl__f0vqqw($this) {
|
|
|
8629
8621
|
}
|
|
8630
8622
|
function Companion_14() {
|
|
8631
8623
|
Companion_instance_14 = this;
|
|
8632
|
-
this.
|
|
8633
|
-
this.
|
|
8634
|
-
this.
|
|
8635
|
-
this.
|
|
8624
|
+
this.ve_1 = _UInt___init__impl__l7qpdl(0);
|
|
8625
|
+
this.we_1 = _UInt___init__impl__l7qpdl(-1);
|
|
8626
|
+
this.xe_1 = 4;
|
|
8627
|
+
this.ye_1 = 32;
|
|
8636
8628
|
}
|
|
8637
8629
|
var Companion_instance_14;
|
|
8638
8630
|
function Companion_getInstance_14() {
|
|
@@ -8644,7 +8636,7 @@ function UInt__compareTo_impl_yacclj($this, other) {
|
|
|
8644
8636
|
return uintCompare(_UInt___get_data__impl__f0vqqw($this), _UInt___get_data__impl__f0vqqw(other));
|
|
8645
8637
|
}
|
|
8646
8638
|
function UInt__compareTo_impl_yacclj_0($this, other) {
|
|
8647
|
-
return UInt__compareTo_impl_yacclj($this.
|
|
8639
|
+
return UInt__compareTo_impl_yacclj($this.ze_1, other instanceof UInt ? other.ze_1 : THROW_CCE());
|
|
8648
8640
|
}
|
|
8649
8641
|
function UInt__toString_impl_dbgl21($this) {
|
|
8650
8642
|
// Inline function 'kotlin.uintToString' call
|
|
@@ -8658,28 +8650,28 @@ function UInt__hashCode_impl_z2mhuw($this) {
|
|
|
8658
8650
|
function UInt__equals_impl_ffdoxg($this, other) {
|
|
8659
8651
|
if (!(other instanceof UInt))
|
|
8660
8652
|
return false;
|
|
8661
|
-
if (!($this === other.
|
|
8653
|
+
if (!($this === other.ze_1))
|
|
8662
8654
|
return false;
|
|
8663
8655
|
return true;
|
|
8664
8656
|
}
|
|
8665
8657
|
function UInt(data) {
|
|
8666
8658
|
Companion_getInstance_14();
|
|
8667
|
-
this.
|
|
8659
|
+
this.ze_1 = data;
|
|
8668
8660
|
}
|
|
8669
|
-
protoOf(UInt).
|
|
8670
|
-
return UInt__compareTo_impl_yacclj(this.
|
|
8661
|
+
protoOf(UInt).af = function (other) {
|
|
8662
|
+
return UInt__compareTo_impl_yacclj(this.ze_1, other);
|
|
8671
8663
|
};
|
|
8672
8664
|
protoOf(UInt).d = function (other) {
|
|
8673
8665
|
return UInt__compareTo_impl_yacclj_0(this, other);
|
|
8674
8666
|
};
|
|
8675
8667
|
protoOf(UInt).toString = function () {
|
|
8676
|
-
return UInt__toString_impl_dbgl21(this.
|
|
8668
|
+
return UInt__toString_impl_dbgl21(this.ze_1);
|
|
8677
8669
|
};
|
|
8678
8670
|
protoOf(UInt).hashCode = function () {
|
|
8679
|
-
return UInt__hashCode_impl_z2mhuw(this.
|
|
8671
|
+
return UInt__hashCode_impl_z2mhuw(this.ze_1);
|
|
8680
8672
|
};
|
|
8681
8673
|
protoOf(UInt).equals = function (other) {
|
|
8682
|
-
return UInt__equals_impl_ffdoxg(this.
|
|
8674
|
+
return UInt__equals_impl_ffdoxg(this.ze_1, other);
|
|
8683
8675
|
};
|
|
8684
8676
|
function _UIntArray___init__impl__ghjpc6(storage) {
|
|
8685
8677
|
return storage;
|
|
@@ -8707,27 +8699,27 @@ function UIntArray__iterator_impl_tkdv7k($this) {
|
|
|
8707
8699
|
return new Iterator(_UIntArray___get_storage__impl__92a0v0($this));
|
|
8708
8700
|
}
|
|
8709
8701
|
function Iterator(array) {
|
|
8710
|
-
this.
|
|
8711
|
-
this.
|
|
8702
|
+
this.bf_1 = array;
|
|
8703
|
+
this.cf_1 = 0;
|
|
8712
8704
|
}
|
|
8713
8705
|
protoOf(Iterator).m = function () {
|
|
8714
|
-
return this.
|
|
8706
|
+
return this.cf_1 < this.bf_1.length;
|
|
8715
8707
|
};
|
|
8716
|
-
protoOf(Iterator).
|
|
8708
|
+
protoOf(Iterator).df = function () {
|
|
8717
8709
|
var tmp;
|
|
8718
|
-
if (this.
|
|
8719
|
-
var _unary__edvuaz = this.
|
|
8720
|
-
this.
|
|
8710
|
+
if (this.cf_1 < this.bf_1.length) {
|
|
8711
|
+
var _unary__edvuaz = this.cf_1;
|
|
8712
|
+
this.cf_1 = _unary__edvuaz + 1 | 0;
|
|
8721
8713
|
// Inline function 'kotlin.toUInt' call
|
|
8722
|
-
var this_0 = this.
|
|
8714
|
+
var this_0 = this.bf_1[_unary__edvuaz];
|
|
8723
8715
|
tmp = _UInt___init__impl__l7qpdl(this_0);
|
|
8724
8716
|
} else {
|
|
8725
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
8717
|
+
throw NoSuchElementException_init_$Create$_0(this.cf_1.toString());
|
|
8726
8718
|
}
|
|
8727
8719
|
return tmp;
|
|
8728
8720
|
};
|
|
8729
8721
|
protoOf(Iterator).n = function () {
|
|
8730
|
-
return new UInt(this.
|
|
8722
|
+
return new UInt(this.df());
|
|
8731
8723
|
};
|
|
8732
8724
|
function UIntArray__contains_impl_b16rzj($this, element) {
|
|
8733
8725
|
var tmp = _UIntArray___get_storage__impl__92a0v0($this);
|
|
@@ -8738,7 +8730,7 @@ function UIntArray__contains_impl_b16rzj($this, element) {
|
|
|
8738
8730
|
function UIntArray__contains_impl_b16rzj_0($this, element) {
|
|
8739
8731
|
if (!(element instanceof UInt))
|
|
8740
8732
|
return false;
|
|
8741
|
-
return UIntArray__contains_impl_b16rzj($this.
|
|
8733
|
+
return UIntArray__contains_impl_b16rzj($this.ef_1, element instanceof UInt ? element.ze_1 : THROW_CCE());
|
|
8742
8734
|
}
|
|
8743
8735
|
function UIntArray__isEmpty_impl_vd8j4n($this) {
|
|
8744
8736
|
return _UIntArray___get_storage__impl__92a0v0($this).length === 0;
|
|
@@ -8752,37 +8744,37 @@ function UIntArray__hashCode_impl_hr7ost($this) {
|
|
|
8752
8744
|
function UIntArray__equals_impl_flcmof($this, other) {
|
|
8753
8745
|
if (!(other instanceof UIntArray))
|
|
8754
8746
|
return false;
|
|
8755
|
-
var tmp0_other_with_cast = other.
|
|
8747
|
+
var tmp0_other_with_cast = other.ef_1;
|
|
8756
8748
|
if (!equals($this, tmp0_other_with_cast))
|
|
8757
8749
|
return false;
|
|
8758
8750
|
return true;
|
|
8759
8751
|
}
|
|
8760
8752
|
function UIntArray(storage) {
|
|
8761
|
-
this.
|
|
8753
|
+
this.ef_1 = storage;
|
|
8762
8754
|
}
|
|
8763
8755
|
protoOf(UIntArray).q = function () {
|
|
8764
|
-
return _UIntArray___get_size__impl__r6l8ci(this.
|
|
8756
|
+
return _UIntArray___get_size__impl__r6l8ci(this.ef_1);
|
|
8765
8757
|
};
|
|
8766
8758
|
protoOf(UIntArray).l = function () {
|
|
8767
|
-
return UIntArray__iterator_impl_tkdv7k(this.
|
|
8759
|
+
return UIntArray__iterator_impl_tkdv7k(this.ef_1);
|
|
8768
8760
|
};
|
|
8769
|
-
protoOf(UIntArray).
|
|
8770
|
-
return UIntArray__contains_impl_b16rzj(this.
|
|
8761
|
+
protoOf(UIntArray).ff = function (element) {
|
|
8762
|
+
return UIntArray__contains_impl_b16rzj(this.ef_1, element);
|
|
8771
8763
|
};
|
|
8772
8764
|
protoOf(UIntArray).t = function (element) {
|
|
8773
8765
|
return UIntArray__contains_impl_b16rzj_0(this, element);
|
|
8774
8766
|
};
|
|
8775
8767
|
protoOf(UIntArray).o = function () {
|
|
8776
|
-
return UIntArray__isEmpty_impl_vd8j4n(this.
|
|
8768
|
+
return UIntArray__isEmpty_impl_vd8j4n(this.ef_1);
|
|
8777
8769
|
};
|
|
8778
8770
|
protoOf(UIntArray).toString = function () {
|
|
8779
|
-
return UIntArray__toString_impl_3zy802(this.
|
|
8771
|
+
return UIntArray__toString_impl_3zy802(this.ef_1);
|
|
8780
8772
|
};
|
|
8781
8773
|
protoOf(UIntArray).hashCode = function () {
|
|
8782
|
-
return UIntArray__hashCode_impl_hr7ost(this.
|
|
8774
|
+
return UIntArray__hashCode_impl_hr7ost(this.ef_1);
|
|
8783
8775
|
};
|
|
8784
8776
|
protoOf(UIntArray).equals = function (other) {
|
|
8785
|
-
return UIntArray__equals_impl_flcmof(this.
|
|
8777
|
+
return UIntArray__equals_impl_flcmof(this.ef_1, other);
|
|
8786
8778
|
};
|
|
8787
8779
|
function _ULong___init__impl__c78o9k(data) {
|
|
8788
8780
|
return data;
|
|
@@ -8792,10 +8784,10 @@ function _ULong___get_data__impl__fggpzb($this) {
|
|
|
8792
8784
|
}
|
|
8793
8785
|
function Companion_15() {
|
|
8794
8786
|
Companion_instance_15 = this;
|
|
8795
|
-
this.
|
|
8796
|
-
this.
|
|
8797
|
-
this.
|
|
8798
|
-
this.
|
|
8787
|
+
this.gf_1 = _ULong___init__impl__c78o9k(new Long(0, 0));
|
|
8788
|
+
this.hf_1 = _ULong___init__impl__c78o9k(new Long(-1, -1));
|
|
8789
|
+
this.if_1 = 8;
|
|
8790
|
+
this.jf_1 = 64;
|
|
8799
8791
|
}
|
|
8800
8792
|
var Companion_instance_15;
|
|
8801
8793
|
function Companion_getInstance_15() {
|
|
@@ -8829,7 +8821,7 @@ function ULong(data) {
|
|
|
8829
8821
|
Companion_getInstance_15();
|
|
8830
8822
|
this.i1_1 = data;
|
|
8831
8823
|
}
|
|
8832
|
-
protoOf(ULong).
|
|
8824
|
+
protoOf(ULong).kf = function (other) {
|
|
8833
8825
|
return ULong__compareTo_impl_38i7tu(this.i1_1, other);
|
|
8834
8826
|
};
|
|
8835
8827
|
protoOf(ULong).d = function (other) {
|
|
@@ -8870,27 +8862,27 @@ function ULongArray__iterator_impl_cq4d2h($this) {
|
|
|
8870
8862
|
return new Iterator_0(_ULongArray___get_storage__impl__28e64j($this));
|
|
8871
8863
|
}
|
|
8872
8864
|
function Iterator_0(array) {
|
|
8873
|
-
this.
|
|
8874
|
-
this.
|
|
8865
|
+
this.lf_1 = array;
|
|
8866
|
+
this.mf_1 = 0;
|
|
8875
8867
|
}
|
|
8876
8868
|
protoOf(Iterator_0).m = function () {
|
|
8877
|
-
return this.
|
|
8869
|
+
return this.mf_1 < this.lf_1.length;
|
|
8878
8870
|
};
|
|
8879
|
-
protoOf(Iterator_0).
|
|
8871
|
+
protoOf(Iterator_0).nf = function () {
|
|
8880
8872
|
var tmp;
|
|
8881
|
-
if (this.
|
|
8882
|
-
var _unary__edvuaz = this.
|
|
8883
|
-
this.
|
|
8873
|
+
if (this.mf_1 < this.lf_1.length) {
|
|
8874
|
+
var _unary__edvuaz = this.mf_1;
|
|
8875
|
+
this.mf_1 = _unary__edvuaz + 1 | 0;
|
|
8884
8876
|
// Inline function 'kotlin.toULong' call
|
|
8885
|
-
var this_0 = this.
|
|
8877
|
+
var this_0 = this.lf_1[_unary__edvuaz];
|
|
8886
8878
|
tmp = _ULong___init__impl__c78o9k(this_0);
|
|
8887
8879
|
} else {
|
|
8888
|
-
throw NoSuchElementException_init_$Create$_0(this.
|
|
8880
|
+
throw NoSuchElementException_init_$Create$_0(this.mf_1.toString());
|
|
8889
8881
|
}
|
|
8890
8882
|
return tmp;
|
|
8891
8883
|
};
|
|
8892
8884
|
protoOf(Iterator_0).n = function () {
|
|
8893
|
-
return new ULong(this.
|
|
8885
|
+
return new ULong(this.nf());
|
|
8894
8886
|
};
|
|
8895
8887
|
function ULongArray__contains_impl_v9bgai($this, element) {
|
|
8896
8888
|
var tmp = _ULongArray___get_storage__impl__28e64j($this);
|
|
@@ -8901,7 +8893,7 @@ function ULongArray__contains_impl_v9bgai($this, element) {
|
|
|
8901
8893
|
function ULongArray__contains_impl_v9bgai_0($this, element) {
|
|
8902
8894
|
if (!(element instanceof ULong))
|
|
8903
8895
|
return false;
|
|
8904
|
-
return ULongArray__contains_impl_v9bgai($this.
|
|
8896
|
+
return ULongArray__contains_impl_v9bgai($this.of_1, element instanceof ULong ? element.i1_1 : THROW_CCE());
|
|
8905
8897
|
}
|
|
8906
8898
|
function ULongArray__isEmpty_impl_c3yngu($this) {
|
|
8907
8899
|
return _ULongArray___get_storage__impl__28e64j($this).length === 0;
|
|
@@ -8915,37 +8907,37 @@ function ULongArray__hashCode_impl_aze4wa($this) {
|
|
|
8915
8907
|
function ULongArray__equals_impl_vwitwa($this, other) {
|
|
8916
8908
|
if (!(other instanceof ULongArray))
|
|
8917
8909
|
return false;
|
|
8918
|
-
var tmp0_other_with_cast = other.
|
|
8910
|
+
var tmp0_other_with_cast = other.of_1;
|
|
8919
8911
|
if (!equals($this, tmp0_other_with_cast))
|
|
8920
8912
|
return false;
|
|
8921
8913
|
return true;
|
|
8922
8914
|
}
|
|
8923
8915
|
function ULongArray(storage) {
|
|
8924
|
-
this.
|
|
8916
|
+
this.of_1 = storage;
|
|
8925
8917
|
}
|
|
8926
8918
|
protoOf(ULongArray).q = function () {
|
|
8927
|
-
return _ULongArray___get_size__impl__ju6dtr(this.
|
|
8919
|
+
return _ULongArray___get_size__impl__ju6dtr(this.of_1);
|
|
8928
8920
|
};
|
|
8929
8921
|
protoOf(ULongArray).l = function () {
|
|
8930
|
-
return ULongArray__iterator_impl_cq4d2h(this.
|
|
8922
|
+
return ULongArray__iterator_impl_cq4d2h(this.of_1);
|
|
8931
8923
|
};
|
|
8932
8924
|
protoOf(ULongArray).y2 = function (element) {
|
|
8933
|
-
return ULongArray__contains_impl_v9bgai(this.
|
|
8925
|
+
return ULongArray__contains_impl_v9bgai(this.of_1, element);
|
|
8934
8926
|
};
|
|
8935
8927
|
protoOf(ULongArray).t = function (element) {
|
|
8936
8928
|
return ULongArray__contains_impl_v9bgai_0(this, element);
|
|
8937
8929
|
};
|
|
8938
8930
|
protoOf(ULongArray).o = function () {
|
|
8939
|
-
return ULongArray__isEmpty_impl_c3yngu(this.
|
|
8931
|
+
return ULongArray__isEmpty_impl_c3yngu(this.of_1);
|
|
8940
8932
|
};
|
|
8941
8933
|
protoOf(ULongArray).toString = function () {
|
|
8942
|
-
return ULongArray__toString_impl_wqk1p5(this.
|
|
8934
|
+
return ULongArray__toString_impl_wqk1p5(this.of_1);
|
|
8943
8935
|
};
|
|
8944
8936
|
protoOf(ULongArray).hashCode = function () {
|
|
8945
|
-
return ULongArray__hashCode_impl_aze4wa(this.
|
|
8937
|
+
return ULongArray__hashCode_impl_aze4wa(this.of_1);
|
|
8946
8938
|
};
|
|
8947
8939
|
protoOf(ULongArray).equals = function (other) {
|
|
8948
|
-
return ULongArray__equals_impl_vwitwa(this.
|
|
8940
|
+
return ULongArray__equals_impl_vwitwa(this.of_1, other);
|
|
8949
8941
|
};
|
|
8950
8942
|
function _UShort___init__impl__jigrne(data) {
|
|
8951
8943
|
return data;
|