git-digger 1.6.1 → 1.6.3
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/Kotlin-DateTime-library-kotlinx-datetime.js +2151 -1427
- package/kotlin/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -1
- package/kotlin/bin/digger +0 -0
- package/kotlin/clikt-clikt-mordant.js +98 -98
- package/kotlin/clikt-clikt.js +1832 -1830
- package/kotlin/clikt-clikt.js.map +1 -1
- package/kotlin/colormath-root-colormath.js +463 -463
- package/kotlin/command-line-tools-digger-cli.js +77 -77
- package/kotlin/kotlin-kotlin-stdlib.js +917 -894
- package/kotlin/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +1029 -899
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +328 -328
- package/kotlin/mordant-mordant.js +1588 -1588
- package/kotlin/tools-cli-tools.js +4 -4
- package/kotlin/tools-digger-core.js +199 -199
- package/kotlin/tools-digger-json.js +121 -121
- package/kotlin/tools-digger-model.js +60 -60
- package/kotlin/tools-git-adapter.js +92 -92
- package/package.json +1 -1
|
@@ -37,6 +37,11 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
37
37
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
+
if (typeof Math.log2 === 'undefined') {
|
|
41
|
+
Math.log2 = function (x) {
|
|
42
|
+
return Math.log(x) * Math.LOG2E;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
40
45
|
if (typeof Math.clz32 === 'undefined') {
|
|
41
46
|
Math.clz32 = function (log, LN2) {
|
|
42
47
|
return function (x) {
|
|
@@ -48,11 +53,6 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
48
53
|
};
|
|
49
54
|
}(Math.log, Math.LN2);
|
|
50
55
|
}
|
|
51
|
-
if (typeof Math.log2 === 'undefined') {
|
|
52
|
-
Math.log2 = function (x) {
|
|
53
|
-
return Math.log(x) * Math.LOG2E;
|
|
54
|
-
};
|
|
55
|
-
}
|
|
56
56
|
if (typeof String.prototype.startsWith === 'undefined') {
|
|
57
57
|
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
58
58
|
position = position || 0;
|
|
@@ -93,8 +93,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
93
93
|
initMetadataForInterface(Entry, 'Entry');
|
|
94
94
|
initMetadataForInterface(KtMap, 'Map');
|
|
95
95
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
96
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
97
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
96
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
97
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
98
98
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
99
99
|
initMetadataForCompanion(Companion_0);
|
|
100
100
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
@@ -113,7 +113,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
113
113
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
114
114
|
initMetadataForObject(Unit, 'Unit');
|
|
115
115
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
116
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
116
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
117
117
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
118
118
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
119
119
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -126,7 +126,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
126
126
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
127
127
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
128
128
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
129
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
129
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
130
130
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
131
131
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
132
132
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -146,7 +146,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
146
146
|
// Inline function 'kotlin.collections.all' call
|
|
147
147
|
var tmp;
|
|
148
148
|
if (isInterface(m, Collection)) {
|
|
149
|
-
tmp = m.
|
|
149
|
+
tmp = m.m();
|
|
150
150
|
} else {
|
|
151
151
|
tmp = false;
|
|
152
152
|
}
|
|
@@ -154,9 +154,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
154
154
|
tmp$ret$0 = true;
|
|
155
155
|
break $l$block_0;
|
|
156
156
|
}
|
|
157
|
-
var _iterator__ex2g4s = m.
|
|
158
|
-
while (_iterator__ex2g4s.
|
|
159
|
-
var element = _iterator__ex2g4s.
|
|
157
|
+
var _iterator__ex2g4s = m.p();
|
|
158
|
+
while (_iterator__ex2g4s.q()) {
|
|
159
|
+
var element = _iterator__ex2g4s.r();
|
|
160
160
|
// Inline function 'kotlin.collections.InternalMap.containsAllEntries.<anonymous>' call
|
|
161
161
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
162
162
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -558,14 +558,35 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
558
558
|
while (inductionVariable <= last);
|
|
559
559
|
return -1;
|
|
560
560
|
}
|
|
561
|
+
function zip(_this__u8e3s4, other) {
|
|
562
|
+
// Inline function 'kotlin.collections.zip' call
|
|
563
|
+
var tmp0 = _this__u8e3s4.length;
|
|
564
|
+
// Inline function 'kotlin.comparisons.minOf' call
|
|
565
|
+
var b = other.length;
|
|
566
|
+
var size = Math.min(tmp0, b);
|
|
567
|
+
var list = ArrayList_init_$Create$_0(size);
|
|
568
|
+
var inductionVariable = 0;
|
|
569
|
+
if (inductionVariable < size)
|
|
570
|
+
do {
|
|
571
|
+
var i = inductionVariable;
|
|
572
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
573
|
+
var tmp2 = _this__u8e3s4[i];
|
|
574
|
+
// Inline function 'kotlin.collections.zip.<anonymous>' call
|
|
575
|
+
var t2 = other[i];
|
|
576
|
+
var tmp$ret$1 = to(tmp2, t2);
|
|
577
|
+
list.e(tmp$ret$1);
|
|
578
|
+
}
|
|
579
|
+
while (inductionVariable < size);
|
|
580
|
+
return list;
|
|
581
|
+
}
|
|
561
582
|
function slice(_this__u8e3s4, indices) {
|
|
562
|
-
if (indices.
|
|
583
|
+
if (indices.m()) {
|
|
563
584
|
// Inline function 'kotlin.collections.listOf' call
|
|
564
585
|
return emptyList();
|
|
565
586
|
}
|
|
566
|
-
var tmp1 = indices.
|
|
587
|
+
var tmp1 = indices.n();
|
|
567
588
|
// Inline function 'kotlin.collections.copyOfRange' call
|
|
568
|
-
var toIndex = indices.
|
|
589
|
+
var toIndex = indices.o() + 1 | 0;
|
|
569
590
|
var tmp$ret$1 = copyOfRange(_this__u8e3s4, tmp1, toIndex);
|
|
570
591
|
return asList(tmp$ret$1);
|
|
571
592
|
}
|
|
@@ -595,9 +616,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
595
616
|
transform = transform === VOID ? null : transform;
|
|
596
617
|
buffer.f(prefix);
|
|
597
618
|
var count = 0;
|
|
598
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
599
|
-
$l$loop: while (_iterator__ex2g4s.
|
|
600
|
-
var element = _iterator__ex2g4s.
|
|
619
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
620
|
+
$l$loop: while (_iterator__ex2g4s.q()) {
|
|
621
|
+
var element = _iterator__ex2g4s.r();
|
|
601
622
|
count = count + 1 | 0;
|
|
602
623
|
if (count > 1) {
|
|
603
624
|
buffer.f(separator);
|
|
@@ -617,11 +638,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
617
638
|
return toCollection_0(_this__u8e3s4, HashSet_init_$Create$_0(mapCapacity(collectionSizeOrDefault(_this__u8e3s4, 12))));
|
|
618
639
|
}
|
|
619
640
|
function toBooleanArray(_this__u8e3s4) {
|
|
620
|
-
var result = booleanArray(_this__u8e3s4.
|
|
641
|
+
var result = booleanArray(_this__u8e3s4.s());
|
|
621
642
|
var index = 0;
|
|
622
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
623
|
-
while (_iterator__ex2g4s.
|
|
624
|
-
var element = _iterator__ex2g4s.
|
|
643
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
644
|
+
while (_iterator__ex2g4s.q()) {
|
|
645
|
+
var element = _iterator__ex2g4s.r();
|
|
625
646
|
var _unary__edvuaz = index;
|
|
626
647
|
index = _unary__edvuaz + 1 | 0;
|
|
627
648
|
result[_unary__edvuaz] = element;
|
|
@@ -629,13 +650,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
629
650
|
return result;
|
|
630
651
|
}
|
|
631
652
|
function last_0(_this__u8e3s4) {
|
|
632
|
-
if (_this__u8e3s4.
|
|
653
|
+
if (_this__u8e3s4.m())
|
|
633
654
|
throw NoSuchElementException_init_$Create$_0('List is empty.');
|
|
634
|
-
return _this__u8e3s4.
|
|
655
|
+
return _this__u8e3s4.t(get_lastIndex_1(_this__u8e3s4));
|
|
635
656
|
}
|
|
636
657
|
function plus(_this__u8e3s4, elements) {
|
|
637
658
|
if (isInterface(elements, Collection)) {
|
|
638
|
-
var result = ArrayList_init_$Create$_0(_this__u8e3s4.
|
|
659
|
+
var result = ArrayList_init_$Create$_0(_this__u8e3s4.s() + elements.s() | 0);
|
|
639
660
|
result.u(_this__u8e3s4);
|
|
640
661
|
result.u(elements);
|
|
641
662
|
return result;
|
|
@@ -646,27 +667,27 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
646
667
|
}
|
|
647
668
|
}
|
|
648
669
|
function getOrNull_0(_this__u8e3s4, index) {
|
|
649
|
-
return (0 <= index ? index < _this__u8e3s4.
|
|
670
|
+
return (0 <= index ? index < _this__u8e3s4.s() : false) ? _this__u8e3s4.t(index) : null;
|
|
650
671
|
}
|
|
651
672
|
function toSet_0(_this__u8e3s4) {
|
|
652
673
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
653
674
|
var tmp;
|
|
654
|
-
switch (_this__u8e3s4.
|
|
675
|
+
switch (_this__u8e3s4.s()) {
|
|
655
676
|
case 0:
|
|
656
677
|
tmp = emptySet();
|
|
657
678
|
break;
|
|
658
679
|
case 1:
|
|
659
680
|
var tmp_0;
|
|
660
681
|
if (isInterface(_this__u8e3s4, KtList)) {
|
|
661
|
-
tmp_0 = _this__u8e3s4.
|
|
682
|
+
tmp_0 = _this__u8e3s4.t(0);
|
|
662
683
|
} else {
|
|
663
|
-
tmp_0 = _this__u8e3s4.
|
|
684
|
+
tmp_0 = _this__u8e3s4.p().r();
|
|
664
685
|
}
|
|
665
686
|
|
|
666
687
|
tmp = setOf(tmp_0);
|
|
667
688
|
break;
|
|
668
689
|
default:
|
|
669
|
-
tmp = toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.
|
|
690
|
+
tmp = toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.s())));
|
|
670
691
|
break;
|
|
671
692
|
}
|
|
672
693
|
return tmp;
|
|
@@ -678,11 +699,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
678
699
|
}
|
|
679
700
|
function single_0(_this__u8e3s4) {
|
|
680
701
|
var tmp;
|
|
681
|
-
switch (_this__u8e3s4.
|
|
702
|
+
switch (_this__u8e3s4.s()) {
|
|
682
703
|
case 0:
|
|
683
704
|
throw NoSuchElementException_init_$Create$_0('List is empty.');
|
|
684
705
|
case 1:
|
|
685
|
-
tmp = _this__u8e3s4.
|
|
706
|
+
tmp = _this__u8e3s4.t(0);
|
|
686
707
|
break;
|
|
687
708
|
default:
|
|
688
709
|
throw IllegalArgumentException_init_$Create$_0('List has more than one element.');
|
|
@@ -693,7 +714,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
693
714
|
return ArrayList_init_$Create$_1(_this__u8e3s4);
|
|
694
715
|
}
|
|
695
716
|
function firstOrNull(_this__u8e3s4) {
|
|
696
|
-
return _this__u8e3s4.
|
|
717
|
+
return _this__u8e3s4.m() ? null : _this__u8e3s4.t(0);
|
|
697
718
|
}
|
|
698
719
|
function drop(_this__u8e3s4, n) {
|
|
699
720
|
// Inline function 'kotlin.require' call
|
|
@@ -706,7 +727,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
706
727
|
return toList_0(_this__u8e3s4);
|
|
707
728
|
var list;
|
|
708
729
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
709
|
-
var resultSize = _this__u8e3s4.
|
|
730
|
+
var resultSize = _this__u8e3s4.s() - n | 0;
|
|
710
731
|
if (resultSize <= 0)
|
|
711
732
|
return emptyList();
|
|
712
733
|
if (resultSize === 1)
|
|
@@ -715,19 +736,19 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
715
736
|
if (isInterface(_this__u8e3s4, KtList)) {
|
|
716
737
|
if (isInterface(_this__u8e3s4, RandomAccess)) {
|
|
717
738
|
var inductionVariable = n;
|
|
718
|
-
var last = _this__u8e3s4.
|
|
739
|
+
var last = _this__u8e3s4.s();
|
|
719
740
|
if (inductionVariable < last)
|
|
720
741
|
do {
|
|
721
742
|
var index = inductionVariable;
|
|
722
743
|
inductionVariable = inductionVariable + 1 | 0;
|
|
723
|
-
list.e(_this__u8e3s4.
|
|
744
|
+
list.e(_this__u8e3s4.t(index));
|
|
724
745
|
}
|
|
725
746
|
while (inductionVariable < last);
|
|
726
747
|
} else {
|
|
727
748
|
// Inline function 'kotlin.collections.iterator' call
|
|
728
749
|
var _iterator__ex2g4s = _this__u8e3s4.v(n);
|
|
729
|
-
while (_iterator__ex2g4s.
|
|
730
|
-
var item = _iterator__ex2g4s.
|
|
750
|
+
while (_iterator__ex2g4s.q()) {
|
|
751
|
+
var item = _iterator__ex2g4s.r();
|
|
731
752
|
list.e(item);
|
|
732
753
|
}
|
|
733
754
|
}
|
|
@@ -737,9 +758,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
737
758
|
list = ArrayList_init_$Create$();
|
|
738
759
|
}
|
|
739
760
|
var count = 0;
|
|
740
|
-
var _iterator__ex2g4s_0 = _this__u8e3s4.
|
|
741
|
-
while (_iterator__ex2g4s_0.
|
|
742
|
-
var item_0 = _iterator__ex2g4s_0.
|
|
761
|
+
var _iterator__ex2g4s_0 = _this__u8e3s4.p();
|
|
762
|
+
while (_iterator__ex2g4s_0.q()) {
|
|
763
|
+
var item_0 = _iterator__ex2g4s_0.r();
|
|
743
764
|
if (count >= n)
|
|
744
765
|
list.e(item_0);
|
|
745
766
|
else {
|
|
@@ -749,7 +770,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
749
770
|
return optimizeReadOnlyList(list);
|
|
750
771
|
}
|
|
751
772
|
function plus_0(_this__u8e3s4, element) {
|
|
752
|
-
var result = ArrayList_init_$Create$_0(_this__u8e3s4.
|
|
773
|
+
var result = ArrayList_init_$Create$_0(_this__u8e3s4.s() + 1 | 0);
|
|
753
774
|
result.u(_this__u8e3s4);
|
|
754
775
|
result.e(element);
|
|
755
776
|
return result;
|
|
@@ -761,16 +782,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
761
782
|
function toList_0(_this__u8e3s4) {
|
|
762
783
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
763
784
|
var tmp;
|
|
764
|
-
switch (_this__u8e3s4.
|
|
785
|
+
switch (_this__u8e3s4.s()) {
|
|
765
786
|
case 0:
|
|
766
787
|
tmp = emptyList();
|
|
767
788
|
break;
|
|
768
789
|
case 1:
|
|
769
790
|
var tmp_0;
|
|
770
791
|
if (isInterface(_this__u8e3s4, KtList)) {
|
|
771
|
-
tmp_0 = _this__u8e3s4.
|
|
792
|
+
tmp_0 = _this__u8e3s4.t(0);
|
|
772
793
|
} else {
|
|
773
|
-
tmp_0 = _this__u8e3s4.
|
|
794
|
+
tmp_0 = _this__u8e3s4.p().r();
|
|
774
795
|
}
|
|
775
796
|
|
|
776
797
|
tmp = listOf(tmp_0);
|
|
@@ -790,24 +811,24 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
790
811
|
if (isInterface(_this__u8e3s4, KtList))
|
|
791
812
|
return first_0(_this__u8e3s4);
|
|
792
813
|
else {
|
|
793
|
-
var iterator = _this__u8e3s4.
|
|
794
|
-
if (!iterator.
|
|
814
|
+
var iterator = _this__u8e3s4.p();
|
|
815
|
+
if (!iterator.q())
|
|
795
816
|
throw NoSuchElementException_init_$Create$_0('Collection is empty.');
|
|
796
|
-
return iterator.
|
|
817
|
+
return iterator.r();
|
|
797
818
|
}
|
|
798
819
|
}
|
|
799
820
|
function first_0(_this__u8e3s4) {
|
|
800
|
-
if (_this__u8e3s4.
|
|
821
|
+
if (_this__u8e3s4.m())
|
|
801
822
|
throw NoSuchElementException_init_$Create$_0('List is empty.');
|
|
802
|
-
return _this__u8e3s4.
|
|
823
|
+
return _this__u8e3s4.t(0);
|
|
803
824
|
}
|
|
804
825
|
function lastOrNull(_this__u8e3s4) {
|
|
805
|
-
return _this__u8e3s4.
|
|
826
|
+
return _this__u8e3s4.m() ? null : _this__u8e3s4.t(_this__u8e3s4.s() - 1 | 0);
|
|
806
827
|
}
|
|
807
828
|
function toCollection_0(_this__u8e3s4, destination) {
|
|
808
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
809
|
-
while (_iterator__ex2g4s.
|
|
810
|
-
var item = _iterator__ex2g4s.
|
|
829
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
830
|
+
while (_iterator__ex2g4s.q()) {
|
|
831
|
+
var item = _iterator__ex2g4s.r();
|
|
811
832
|
destination.e(item);
|
|
812
833
|
}
|
|
813
834
|
return destination;
|
|
@@ -825,18 +846,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
825
846
|
if (isInterface(_this__u8e3s4, KtList))
|
|
826
847
|
return last_0(_this__u8e3s4);
|
|
827
848
|
else {
|
|
828
|
-
var iterator = _this__u8e3s4.
|
|
829
|
-
if (!iterator.
|
|
849
|
+
var iterator = _this__u8e3s4.p();
|
|
850
|
+
if (!iterator.q())
|
|
830
851
|
throw NoSuchElementException_init_$Create$_0('Collection is empty.');
|
|
831
|
-
var last = iterator.
|
|
832
|
-
while (iterator.
|
|
833
|
-
last = iterator.
|
|
852
|
+
var last = iterator.r();
|
|
853
|
+
while (iterator.q())
|
|
854
|
+
last = iterator.r();
|
|
834
855
|
return last;
|
|
835
856
|
}
|
|
836
857
|
}
|
|
837
858
|
function sortedWith(_this__u8e3s4, comparator) {
|
|
838
859
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
839
|
-
if (_this__u8e3s4.
|
|
860
|
+
if (_this__u8e3s4.s() <= 1)
|
|
840
861
|
return toList_0(_this__u8e3s4);
|
|
841
862
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
842
863
|
var tmp = copyToArray(_this__u8e3s4);
|
|
@@ -861,17 +882,17 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
861
882
|
if (isInterface(_this__u8e3s4, KtList))
|
|
862
883
|
return single_0(_this__u8e3s4);
|
|
863
884
|
else {
|
|
864
|
-
var iterator = _this__u8e3s4.
|
|
865
|
-
if (!iterator.
|
|
885
|
+
var iterator = _this__u8e3s4.p();
|
|
886
|
+
if (!iterator.q())
|
|
866
887
|
throw NoSuchElementException_init_$Create$_0('Collection is empty.');
|
|
867
|
-
var single = iterator.
|
|
868
|
-
if (iterator.
|
|
888
|
+
var single = iterator.r();
|
|
889
|
+
if (iterator.q())
|
|
869
890
|
throw IllegalArgumentException_init_$Create$_0('Collection has more than one element.');
|
|
870
891
|
return single;
|
|
871
892
|
}
|
|
872
893
|
}
|
|
873
894
|
function plus_1(_this__u8e3s4, elements) {
|
|
874
|
-
var result = ArrayList_init_$Create$_0(_this__u8e3s4.
|
|
895
|
+
var result = ArrayList_init_$Create$_0(_this__u8e3s4.s() + elements.length | 0);
|
|
875
896
|
result.u(_this__u8e3s4);
|
|
876
897
|
addAll_0(result, elements);
|
|
877
898
|
return result;
|
|
@@ -886,16 +907,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
886
907
|
if (n === 0)
|
|
887
908
|
return emptyList();
|
|
888
909
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
889
|
-
if (n >= _this__u8e3s4.
|
|
910
|
+
if (n >= _this__u8e3s4.s())
|
|
890
911
|
return toList_0(_this__u8e3s4);
|
|
891
912
|
if (n === 1)
|
|
892
913
|
return listOf(first(_this__u8e3s4));
|
|
893
914
|
}
|
|
894
915
|
var count = 0;
|
|
895
916
|
var list = ArrayList_init_$Create$_0(n);
|
|
896
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
897
|
-
$l$loop: while (_iterator__ex2g4s.
|
|
898
|
-
var item = _iterator__ex2g4s.
|
|
917
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
918
|
+
$l$loop: while (_iterator__ex2g4s.q()) {
|
|
919
|
+
var item = _iterator__ex2g4s.r();
|
|
899
920
|
list.e(item);
|
|
900
921
|
count = count + 1 | 0;
|
|
901
922
|
if (count === n)
|
|
@@ -912,7 +933,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
912
933
|
}
|
|
913
934
|
if (n === 0)
|
|
914
935
|
return emptyList();
|
|
915
|
-
var size = _this__u8e3s4.
|
|
936
|
+
var size = _this__u8e3s4.s();
|
|
916
937
|
if (n >= size)
|
|
917
938
|
return toList_0(_this__u8e3s4);
|
|
918
939
|
if (n === 1)
|
|
@@ -924,26 +945,26 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
924
945
|
do {
|
|
925
946
|
var index = inductionVariable;
|
|
926
947
|
inductionVariable = inductionVariable + 1 | 0;
|
|
927
|
-
list.e(_this__u8e3s4.
|
|
948
|
+
list.e(_this__u8e3s4.t(index));
|
|
928
949
|
}
|
|
929
950
|
while (inductionVariable < size);
|
|
930
951
|
} else {
|
|
931
952
|
// Inline function 'kotlin.collections.iterator' call
|
|
932
953
|
var _iterator__ex2g4s = _this__u8e3s4.v(size - n | 0);
|
|
933
|
-
while (_iterator__ex2g4s.
|
|
934
|
-
var item = _iterator__ex2g4s.
|
|
954
|
+
while (_iterator__ex2g4s.q()) {
|
|
955
|
+
var item = _iterator__ex2g4s.r();
|
|
935
956
|
list.e(item);
|
|
936
957
|
}
|
|
937
958
|
}
|
|
938
959
|
return list;
|
|
939
960
|
}
|
|
940
961
|
function maxOrNull(_this__u8e3s4) {
|
|
941
|
-
var iterator = _this__u8e3s4.
|
|
942
|
-
if (!iterator.
|
|
962
|
+
var iterator = _this__u8e3s4.p();
|
|
963
|
+
if (!iterator.q())
|
|
943
964
|
return null;
|
|
944
|
-
var max = iterator.
|
|
945
|
-
while (iterator.
|
|
946
|
-
var e = iterator.
|
|
965
|
+
var max = iterator.r();
|
|
966
|
+
while (iterator.q()) {
|
|
967
|
+
var e = iterator.r();
|
|
947
968
|
if (compareTo(max, e) < 0)
|
|
948
969
|
max = e;
|
|
949
970
|
}
|
|
@@ -951,7 +972,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
951
972
|
}
|
|
952
973
|
function sorted(_this__u8e3s4) {
|
|
953
974
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
954
|
-
if (_this__u8e3s4.
|
|
975
|
+
if (_this__u8e3s4.s() <= 1)
|
|
955
976
|
return toList_0(_this__u8e3s4);
|
|
956
977
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
957
978
|
var tmp = copyToArray(_this__u8e3s4);
|
|
@@ -970,7 +991,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
970
991
|
function reversed(_this__u8e3s4) {
|
|
971
992
|
var tmp;
|
|
972
993
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
973
|
-
tmp = _this__u8e3s4.
|
|
994
|
+
tmp = _this__u8e3s4.s() <= 1;
|
|
974
995
|
} else {
|
|
975
996
|
tmp = false;
|
|
976
997
|
}
|
|
@@ -981,30 +1002,30 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
981
1002
|
return list;
|
|
982
1003
|
}
|
|
983
1004
|
function minOrNull(_this__u8e3s4) {
|
|
984
|
-
var iterator = _this__u8e3s4.
|
|
985
|
-
if (!iterator.
|
|
1005
|
+
var iterator = _this__u8e3s4.p();
|
|
1006
|
+
if (!iterator.q())
|
|
986
1007
|
return null;
|
|
987
|
-
var min = iterator.
|
|
988
|
-
while (iterator.
|
|
989
|
-
var e = iterator.
|
|
1008
|
+
var min = iterator.r();
|
|
1009
|
+
while (iterator.q()) {
|
|
1010
|
+
var e = iterator.r();
|
|
990
1011
|
if (compareTo(min, e) > 0)
|
|
991
1012
|
min = e;
|
|
992
1013
|
}
|
|
993
1014
|
return min;
|
|
994
1015
|
}
|
|
995
|
-
function
|
|
1016
|
+
function zip_0(_this__u8e3s4, other) {
|
|
996
1017
|
// Inline function 'kotlin.collections.zip' call
|
|
997
|
-
var first = _this__u8e3s4.
|
|
998
|
-
var second = other.
|
|
1018
|
+
var first = _this__u8e3s4.p();
|
|
1019
|
+
var second = other.p();
|
|
999
1020
|
var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
|
|
1000
1021
|
// Inline function 'kotlin.comparisons.minOf' call
|
|
1001
1022
|
var b = collectionSizeOrDefault(other, 10);
|
|
1002
1023
|
var tmp$ret$0 = Math.min(tmp0, b);
|
|
1003
1024
|
var list = ArrayList_init_$Create$_0(tmp$ret$0);
|
|
1004
|
-
while (first.
|
|
1005
|
-
var tmp2 = first.
|
|
1025
|
+
while (first.q() && second.q()) {
|
|
1026
|
+
var tmp2 = first.r();
|
|
1006
1027
|
// Inline function 'kotlin.collections.zip.<anonymous>' call
|
|
1007
|
-
var t2 = second.
|
|
1028
|
+
var t2 = second.r();
|
|
1008
1029
|
var tmp$ret$1 = to(tmp2, t2);
|
|
1009
1030
|
list.e(tmp$ret$1);
|
|
1010
1031
|
}
|
|
@@ -1012,9 +1033,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1012
1033
|
}
|
|
1013
1034
|
function sum(_this__u8e3s4) {
|
|
1014
1035
|
var sum = 0;
|
|
1015
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
1016
|
-
while (_iterator__ex2g4s.
|
|
1017
|
-
var element = _iterator__ex2g4s.
|
|
1036
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
1037
|
+
while (_iterator__ex2g4s.q()) {
|
|
1038
|
+
var element = _iterator__ex2g4s.r();
|
|
1018
1039
|
sum = sum + element | 0;
|
|
1019
1040
|
}
|
|
1020
1041
|
return sum;
|
|
@@ -1022,38 +1043,38 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1022
1043
|
function asSequence$$inlined$Sequence$1($this_asSequence) {
|
|
1023
1044
|
this.w_1 = $this_asSequence;
|
|
1024
1045
|
}
|
|
1025
|
-
protoOf(asSequence$$inlined$Sequence$1).
|
|
1046
|
+
protoOf(asSequence$$inlined$Sequence$1).p = function () {
|
|
1026
1047
|
// Inline function 'kotlin.collections.asSequence.<anonymous>' call
|
|
1027
|
-
return this.w_1.
|
|
1048
|
+
return this.w_1.p();
|
|
1028
1049
|
};
|
|
1029
1050
|
function withIndex$lambda_0($this_withIndex) {
|
|
1030
1051
|
return function () {
|
|
1031
|
-
return $this_withIndex.
|
|
1052
|
+
return $this_withIndex.p();
|
|
1032
1053
|
};
|
|
1033
1054
|
}
|
|
1034
1055
|
function toList_1(_this__u8e3s4) {
|
|
1035
|
-
if (_this__u8e3s4.
|
|
1056
|
+
if (_this__u8e3s4.s() === 0)
|
|
1036
1057
|
return emptyList();
|
|
1037
|
-
var iterator = _this__u8e3s4.x().
|
|
1038
|
-
if (!iterator.
|
|
1058
|
+
var iterator = _this__u8e3s4.x().p();
|
|
1059
|
+
if (!iterator.q())
|
|
1039
1060
|
return emptyList();
|
|
1040
|
-
var first = iterator.
|
|
1041
|
-
if (!iterator.
|
|
1061
|
+
var first = iterator.r();
|
|
1062
|
+
if (!iterator.q()) {
|
|
1042
1063
|
// Inline function 'kotlin.collections.toPair' call
|
|
1043
1064
|
var tmp$ret$0 = new Pair(first.y(), first.z());
|
|
1044
1065
|
return listOf(tmp$ret$0);
|
|
1045
1066
|
}
|
|
1046
|
-
var result = ArrayList_init_$Create$_0(_this__u8e3s4.
|
|
1067
|
+
var result = ArrayList_init_$Create$_0(_this__u8e3s4.s());
|
|
1047
1068
|
// Inline function 'kotlin.collections.toPair' call
|
|
1048
1069
|
var tmp$ret$1 = new Pair(first.y(), first.z());
|
|
1049
1070
|
result.e(tmp$ret$1);
|
|
1050
1071
|
do {
|
|
1051
1072
|
// Inline function 'kotlin.collections.toPair' call
|
|
1052
|
-
var this_0 = iterator.
|
|
1073
|
+
var this_0 = iterator.r();
|
|
1053
1074
|
var tmp$ret$2 = new Pair(this_0.y(), this_0.z());
|
|
1054
1075
|
result.e(tmp$ret$2);
|
|
1055
1076
|
}
|
|
1056
|
-
while (iterator.
|
|
1077
|
+
while (iterator.q());
|
|
1057
1078
|
return result;
|
|
1058
1079
|
}
|
|
1059
1080
|
function asSequence_0(_this__u8e3s4) {
|
|
@@ -1098,25 +1119,25 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1098
1119
|
return Companion_instance_9.b1(_this__u8e3s4, to, -1);
|
|
1099
1120
|
}
|
|
1100
1121
|
function firstOrNull_0(_this__u8e3s4) {
|
|
1101
|
-
var iterator = _this__u8e3s4.
|
|
1102
|
-
if (!iterator.
|
|
1122
|
+
var iterator = _this__u8e3s4.p();
|
|
1123
|
+
if (!iterator.q())
|
|
1103
1124
|
return null;
|
|
1104
|
-
return iterator.
|
|
1125
|
+
return iterator.r();
|
|
1105
1126
|
}
|
|
1106
1127
|
function mapNotNull(_this__u8e3s4, transform) {
|
|
1107
1128
|
return filterNotNull_0(new TransformingSequence(_this__u8e3s4, transform));
|
|
1108
1129
|
}
|
|
1109
1130
|
function toList_2(_this__u8e3s4) {
|
|
1110
|
-
var it = _this__u8e3s4.
|
|
1111
|
-
if (!it.
|
|
1131
|
+
var it = _this__u8e3s4.p();
|
|
1132
|
+
if (!it.q())
|
|
1112
1133
|
return emptyList();
|
|
1113
|
-
var element = it.
|
|
1114
|
-
if (!it.
|
|
1134
|
+
var element = it.r();
|
|
1135
|
+
if (!it.q())
|
|
1115
1136
|
return listOf(element);
|
|
1116
1137
|
var dst = ArrayList_init_$Create$();
|
|
1117
1138
|
dst.e(element);
|
|
1118
|
-
while (it.
|
|
1119
|
-
dst.e(it.
|
|
1139
|
+
while (it.q()) {
|
|
1140
|
+
dst.e(it.r());
|
|
1120
1141
|
}
|
|
1121
1142
|
return dst;
|
|
1122
1143
|
}
|
|
@@ -1152,9 +1173,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1152
1173
|
transform = transform === VOID ? null : transform;
|
|
1153
1174
|
buffer.f(prefix);
|
|
1154
1175
|
var count = 0;
|
|
1155
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
1156
|
-
$l$loop: while (_iterator__ex2g4s.
|
|
1157
|
-
var element = _iterator__ex2g4s.
|
|
1176
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
1177
|
+
$l$loop: while (_iterator__ex2g4s.q()) {
|
|
1178
|
+
var element = _iterator__ex2g4s.r();
|
|
1158
1179
|
count = count + 1 | 0;
|
|
1159
1180
|
if (count > 1) {
|
|
1160
1181
|
buffer.f(separator);
|
|
@@ -1177,21 +1198,21 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1177
1198
|
return map(_this__u8e3s4, onEach$lambda(action));
|
|
1178
1199
|
}
|
|
1179
1200
|
function last_2(_this__u8e3s4) {
|
|
1180
|
-
var iterator = _this__u8e3s4.
|
|
1181
|
-
if (!iterator.
|
|
1201
|
+
var iterator = _this__u8e3s4.p();
|
|
1202
|
+
if (!iterator.q())
|
|
1182
1203
|
throw NoSuchElementException_init_$Create$_0('Sequence is empty.');
|
|
1183
|
-
var last = iterator.
|
|
1184
|
-
while (iterator.
|
|
1185
|
-
last = iterator.
|
|
1204
|
+
var last = iterator.r();
|
|
1205
|
+
while (iterator.q())
|
|
1206
|
+
last = iterator.r();
|
|
1186
1207
|
return last;
|
|
1187
1208
|
}
|
|
1188
1209
|
function maxOrNull_0(_this__u8e3s4) {
|
|
1189
|
-
var iterator = _this__u8e3s4.
|
|
1190
|
-
if (!iterator.
|
|
1210
|
+
var iterator = _this__u8e3s4.p();
|
|
1211
|
+
if (!iterator.q())
|
|
1191
1212
|
return null;
|
|
1192
|
-
var max = iterator.
|
|
1193
|
-
while (iterator.
|
|
1194
|
-
var e = iterator.
|
|
1213
|
+
var max = iterator.r();
|
|
1214
|
+
while (iterator.q()) {
|
|
1215
|
+
var e = iterator.r();
|
|
1195
1216
|
if (compareTo(max, e) < 0)
|
|
1196
1217
|
max = e;
|
|
1197
1218
|
}
|
|
@@ -1200,9 +1221,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1200
1221
|
function asIterable$$inlined$Iterable$1($this_asIterable) {
|
|
1201
1222
|
this.c1_1 = $this_asIterable;
|
|
1202
1223
|
}
|
|
1203
|
-
protoOf(asIterable$$inlined$Iterable$1).
|
|
1224
|
+
protoOf(asIterable$$inlined$Iterable$1).p = function () {
|
|
1204
1225
|
// Inline function 'kotlin.sequences.asIterable.<anonymous>' call
|
|
1205
|
-
return this.c1_1.
|
|
1226
|
+
return this.c1_1.p();
|
|
1206
1227
|
};
|
|
1207
1228
|
function filterNotNull$lambda(it) {
|
|
1208
1229
|
return it == null;
|
|
@@ -1215,14 +1236,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1215
1236
|
}
|
|
1216
1237
|
function minus(_this__u8e3s4, elements) {
|
|
1217
1238
|
var other = convertToListIfNotCollection(elements);
|
|
1218
|
-
if (other.
|
|
1239
|
+
if (other.m())
|
|
1219
1240
|
return toSet_0(_this__u8e3s4);
|
|
1220
1241
|
if (isInterface(other, KtSet)) {
|
|
1221
1242
|
// Inline function 'kotlin.collections.filterNotTo' call
|
|
1222
1243
|
var destination = LinkedHashSet_init_$Create$();
|
|
1223
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
1224
|
-
while (_iterator__ex2g4s.
|
|
1225
|
-
var element = _iterator__ex2g4s.
|
|
1244
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
1245
|
+
while (_iterator__ex2g4s.q()) {
|
|
1246
|
+
var element = _iterator__ex2g4s.r();
|
|
1226
1247
|
// Inline function 'kotlin.collections.minus.<anonymous>' call
|
|
1227
1248
|
if (!other.d1(element)) {
|
|
1228
1249
|
destination.e(element);
|
|
@@ -1242,10 +1263,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1242
1263
|
} else {
|
|
1243
1264
|
// Inline function 'kotlin.let' call
|
|
1244
1265
|
// Inline function 'kotlin.collections.plus.<anonymous>' call
|
|
1245
|
-
tmp = _this__u8e3s4.
|
|
1266
|
+
tmp = _this__u8e3s4.s() + tmp0_safe_receiver | 0;
|
|
1246
1267
|
}
|
|
1247
1268
|
var tmp1_elvis_lhs = tmp;
|
|
1248
|
-
var result = LinkedHashSet_init_$Create$_1(mapCapacity(tmp1_elvis_lhs == null ? imul(_this__u8e3s4.
|
|
1269
|
+
var result = LinkedHashSet_init_$Create$_1(mapCapacity(tmp1_elvis_lhs == null ? imul(_this__u8e3s4.s(), 2) : tmp1_elvis_lhs));
|
|
1249
1270
|
result.u(_this__u8e3s4);
|
|
1250
1271
|
addAll(result, elements);
|
|
1251
1272
|
return result;
|
|
@@ -1269,7 +1290,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1269
1290
|
return charSequenceGet(_this__u8e3s4, 0);
|
|
1270
1291
|
}
|
|
1271
1292
|
function slice_0(_this__u8e3s4, indices) {
|
|
1272
|
-
if (indices.
|
|
1293
|
+
if (indices.m())
|
|
1273
1294
|
return '';
|
|
1274
1295
|
return substring_0(_this__u8e3s4, indices);
|
|
1275
1296
|
}
|
|
@@ -1666,10 +1687,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1666
1687
|
this.h3_1 = $array;
|
|
1667
1688
|
this.g3_1 = 0;
|
|
1668
1689
|
}
|
|
1669
|
-
protoOf(arrayIterator$1).
|
|
1690
|
+
protoOf(arrayIterator$1).q = function () {
|
|
1670
1691
|
return !(this.g3_1 === this.h3_1.length);
|
|
1671
1692
|
};
|
|
1672
|
-
protoOf(arrayIterator$1).
|
|
1693
|
+
protoOf(arrayIterator$1).r = function () {
|
|
1673
1694
|
var tmp;
|
|
1674
1695
|
if (!(this.g3_1 === this.h3_1.length)) {
|
|
1675
1696
|
var _unary__edvuaz = this.g3_1;
|
|
@@ -3040,7 +3061,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3040
3061
|
return _this__u8e3s4.slice(fromIndex, toIndex);
|
|
3041
3062
|
}
|
|
3042
3063
|
function reverse(_this__u8e3s4) {
|
|
3043
|
-
var midPoint = (_this__u8e3s4.
|
|
3064
|
+
var midPoint = (_this__u8e3s4.s() / 2 | 0) - 1 | 0;
|
|
3044
3065
|
if (midPoint < 0)
|
|
3045
3066
|
return Unit_instance;
|
|
3046
3067
|
var reverseIndex = get_lastIndex_1(_this__u8e3s4);
|
|
@@ -3049,8 +3070,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3049
3070
|
do {
|
|
3050
3071
|
var index = inductionVariable;
|
|
3051
3072
|
inductionVariable = inductionVariable + 1 | 0;
|
|
3052
|
-
var tmp = _this__u8e3s4.
|
|
3053
|
-
_this__u8e3s4.a2(index, _this__u8e3s4.
|
|
3073
|
+
var tmp = _this__u8e3s4.t(index);
|
|
3074
|
+
_this__u8e3s4.a2(index, _this__u8e3s4.t(reverseIndex));
|
|
3054
3075
|
_this__u8e3s4.a2(reverseIndex, tmp);
|
|
3055
3076
|
reverseIndex = reverseIndex - 1 | 0;
|
|
3056
3077
|
}
|
|
@@ -3227,7 +3248,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3227
3248
|
return tmp;
|
|
3228
3249
|
}
|
|
3229
3250
|
function collectionsSort(list, comparator) {
|
|
3230
|
-
if (list.
|
|
3251
|
+
if (list.s() <= 1)
|
|
3231
3252
|
return Unit_instance;
|
|
3232
3253
|
var array = copyToArray(list);
|
|
3233
3254
|
sortArrayWith(array, comparator);
|
|
@@ -3268,9 +3289,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3268
3289
|
}
|
|
3269
3290
|
protoOf(AbstractMutableCollection).d2 = function (element) {
|
|
3270
3291
|
this.t3();
|
|
3271
|
-
var iterator = this.
|
|
3272
|
-
while (iterator.
|
|
3273
|
-
if (equals(iterator.
|
|
3292
|
+
var iterator = this.p();
|
|
3293
|
+
while (iterator.q()) {
|
|
3294
|
+
if (equals(iterator.r(), element)) {
|
|
3274
3295
|
iterator.u3();
|
|
3275
3296
|
return true;
|
|
3276
3297
|
}
|
|
@@ -3280,9 +3301,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3280
3301
|
protoOf(AbstractMutableCollection).u = function (elements) {
|
|
3281
3302
|
this.t3();
|
|
3282
3303
|
var modified = false;
|
|
3283
|
-
var _iterator__ex2g4s = elements.
|
|
3284
|
-
while (_iterator__ex2g4s.
|
|
3285
|
-
var element = _iterator__ex2g4s.
|
|
3304
|
+
var _iterator__ex2g4s = elements.p();
|
|
3305
|
+
while (_iterator__ex2g4s.q()) {
|
|
3306
|
+
var element = _iterator__ex2g4s.r();
|
|
3286
3307
|
if (this.e(element))
|
|
3287
3308
|
modified = true;
|
|
3288
3309
|
}
|
|
@@ -3303,17 +3324,17 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3303
3324
|
this.v3_1 = 0;
|
|
3304
3325
|
this.w3_1 = -1;
|
|
3305
3326
|
}
|
|
3306
|
-
protoOf(IteratorImpl).
|
|
3307
|
-
return this.v3_1 < this.x3_1.
|
|
3327
|
+
protoOf(IteratorImpl).q = function () {
|
|
3328
|
+
return this.v3_1 < this.x3_1.s();
|
|
3308
3329
|
};
|
|
3309
|
-
protoOf(IteratorImpl).
|
|
3310
|
-
if (!this.
|
|
3330
|
+
protoOf(IteratorImpl).r = function () {
|
|
3331
|
+
if (!this.q())
|
|
3311
3332
|
throw NoSuchElementException_init_$Create$();
|
|
3312
3333
|
var tmp = this;
|
|
3313
3334
|
var _unary__edvuaz = this.v3_1;
|
|
3314
3335
|
this.v3_1 = _unary__edvuaz + 1 | 0;
|
|
3315
3336
|
tmp.w3_1 = _unary__edvuaz;
|
|
3316
|
-
return this.x3_1.
|
|
3337
|
+
return this.x3_1.t(this.w3_1);
|
|
3317
3338
|
};
|
|
3318
3339
|
protoOf(IteratorImpl).u3 = function () {
|
|
3319
3340
|
// Inline function 'kotlin.check' call
|
|
@@ -3329,7 +3350,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3329
3350
|
function ListIteratorImpl($outer, index) {
|
|
3330
3351
|
this.c4_1 = $outer;
|
|
3331
3352
|
IteratorImpl.call(this, $outer);
|
|
3332
|
-
Companion_instance_5.d4(index, this.c4_1.
|
|
3353
|
+
Companion_instance_5.d4(index, this.c4_1.s());
|
|
3333
3354
|
this.v3_1 = index;
|
|
3334
3355
|
}
|
|
3335
3356
|
protoOf(ListIteratorImpl).e4 = function () {
|
|
@@ -3344,7 +3365,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3344
3365
|
var tmp = this;
|
|
3345
3366
|
this.v3_1 = this.v3_1 - 1 | 0;
|
|
3346
3367
|
tmp.w3_1 = this.v3_1;
|
|
3347
|
-
return this.c4_1.
|
|
3368
|
+
return this.c4_1.t(this.w3_1);
|
|
3348
3369
|
};
|
|
3349
3370
|
protoOf(ListIteratorImpl).h4 = function () {
|
|
3350
3371
|
return this.v3_1 - 1 | 0;
|
|
@@ -3354,7 +3375,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3354
3375
|
this.j4_1 = list;
|
|
3355
3376
|
this.k4_1 = fromIndex;
|
|
3356
3377
|
this.l4_1 = 0;
|
|
3357
|
-
Companion_instance_5.q3(this.k4_1, toIndex, this.j4_1.
|
|
3378
|
+
Companion_instance_5.q3(this.k4_1, toIndex, this.j4_1.s());
|
|
3358
3379
|
this.l4_1 = toIndex - this.k4_1 | 0;
|
|
3359
3380
|
}
|
|
3360
3381
|
protoOf(SubList).b2 = function (index, element) {
|
|
@@ -3362,9 +3383,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3362
3383
|
this.j4_1.b2(this.k4_1 + index | 0, element);
|
|
3363
3384
|
this.l4_1 = this.l4_1 + 1 | 0;
|
|
3364
3385
|
};
|
|
3365
|
-
protoOf(SubList).
|
|
3386
|
+
protoOf(SubList).t = function (index) {
|
|
3366
3387
|
Companion_instance_5.m4(index, this.l4_1);
|
|
3367
|
-
return this.j4_1.
|
|
3388
|
+
return this.j4_1.t(this.k4_1 + index | 0);
|
|
3368
3389
|
};
|
|
3369
3390
|
protoOf(SubList).c2 = function (index) {
|
|
3370
3391
|
Companion_instance_5.m4(index, this.l4_1);
|
|
@@ -3380,7 +3401,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3380
3401
|
this.j4_1.n4(this.k4_1 + fromIndex | 0, this.k4_1 + toIndex | 0);
|
|
3381
3402
|
this.l4_1 = this.l4_1 - (toIndex - fromIndex | 0) | 0;
|
|
3382
3403
|
};
|
|
3383
|
-
protoOf(SubList).
|
|
3404
|
+
protoOf(SubList).s = function () {
|
|
3384
3405
|
return this.l4_1;
|
|
3385
3406
|
};
|
|
3386
3407
|
protoOf(SubList).t3 = function () {
|
|
@@ -3392,14 +3413,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3392
3413
|
}
|
|
3393
3414
|
protoOf(AbstractMutableList).e = function (element) {
|
|
3394
3415
|
this.t3();
|
|
3395
|
-
this.b2(this.
|
|
3416
|
+
this.b2(this.s(), element);
|
|
3396
3417
|
return true;
|
|
3397
3418
|
};
|
|
3398
3419
|
protoOf(AbstractMutableList).z1 = function () {
|
|
3399
3420
|
this.t3();
|
|
3400
|
-
this.n4(0, this.
|
|
3421
|
+
this.n4(0, this.s());
|
|
3401
3422
|
};
|
|
3402
|
-
protoOf(AbstractMutableList).
|
|
3423
|
+
protoOf(AbstractMutableList).p = function () {
|
|
3403
3424
|
return new IteratorImpl(this);
|
|
3404
3425
|
};
|
|
3405
3426
|
protoOf(AbstractMutableList).d1 = function (element) {
|
|
@@ -3410,9 +3431,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3410
3431
|
$l$block: {
|
|
3411
3432
|
// Inline function 'kotlin.collections.indexOfFirst' call
|
|
3412
3433
|
var index = 0;
|
|
3413
|
-
var _iterator__ex2g4s = this.
|
|
3414
|
-
while (_iterator__ex2g4s.
|
|
3415
|
-
var item = _iterator__ex2g4s.
|
|
3434
|
+
var _iterator__ex2g4s = this.p();
|
|
3435
|
+
while (_iterator__ex2g4s.q()) {
|
|
3436
|
+
var item = _iterator__ex2g4s.r();
|
|
3416
3437
|
// Inline function 'kotlin.collections.AbstractMutableList.indexOf.<anonymous>' call
|
|
3417
3438
|
if (equals(item, element)) {
|
|
3418
3439
|
tmp$ret$1 = index;
|
|
@@ -3440,7 +3461,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3440
3461
|
var index = inductionVariable;
|
|
3441
3462
|
inductionVariable = inductionVariable + 1 | 0;
|
|
3442
3463
|
// Inline function 'kotlin.collections.AbstractMutableList.removeRange.<anonymous>' call
|
|
3443
|
-
iterator.
|
|
3464
|
+
iterator.r();
|
|
3444
3465
|
iterator.u3();
|
|
3445
3466
|
}
|
|
3446
3467
|
while (inductionVariable < times);
|
|
@@ -3497,9 +3518,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3497
3518
|
protoOf(AbstractMutableMap).g2 = function (from) {
|
|
3498
3519
|
this.t3();
|
|
3499
3520
|
// Inline function 'kotlin.collections.iterator' call
|
|
3500
|
-
var _iterator__ex2g4s = from.x().
|
|
3501
|
-
while (_iterator__ex2g4s.
|
|
3502
|
-
var _destruct__k2r9zo = _iterator__ex2g4s.
|
|
3521
|
+
var _iterator__ex2g4s = from.x().p();
|
|
3522
|
+
while (_iterator__ex2g4s.q()) {
|
|
3523
|
+
var _destruct__k2r9zo = _iterator__ex2g4s.r();
|
|
3503
3524
|
// Inline function 'kotlin.collections.component1' call
|
|
3504
3525
|
var key = _destruct__k2r9zo.y();
|
|
3505
3526
|
// Inline function 'kotlin.collections.component2' call
|
|
@@ -3509,9 +3530,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3509
3530
|
};
|
|
3510
3531
|
protoOf(AbstractMutableMap).f2 = function (key) {
|
|
3511
3532
|
this.t3();
|
|
3512
|
-
var iter = this.x().
|
|
3513
|
-
while (iter.
|
|
3514
|
-
var entry = iter.
|
|
3533
|
+
var iter = this.x().p();
|
|
3534
|
+
while (iter.q()) {
|
|
3535
|
+
var entry = iter.r();
|
|
3515
3536
|
var k = entry.y();
|
|
3516
3537
|
if (equals(key, k)) {
|
|
3517
3538
|
var value = entry.z();
|
|
@@ -3569,7 +3590,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3569
3590
|
// Inline function 'kotlin.also' call
|
|
3570
3591
|
var this_0 = ArrayList_init_$Create$_0(0);
|
|
3571
3592
|
// Inline function 'kotlin.collections.Companion.Empty.<anonymous>' call
|
|
3572
|
-
this_0.
|
|
3593
|
+
this_0.i_1 = true;
|
|
3573
3594
|
tmp.b5_1 = this_0;
|
|
3574
3595
|
}
|
|
3575
3596
|
var Companion_instance_2;
|
|
@@ -3612,79 +3633,79 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3612
3633
|
return ArrayList_init_$Init$_1(elements, objectCreate(protoOf(ArrayList)));
|
|
3613
3634
|
}
|
|
3614
3635
|
function increaseLength($this, amount) {
|
|
3615
|
-
var previous = $this.
|
|
3636
|
+
var previous = $this.s();
|
|
3616
3637
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3617
|
-
$this.
|
|
3638
|
+
$this.h_1.length = $this.s() + amount | 0;
|
|
3618
3639
|
return previous;
|
|
3619
3640
|
}
|
|
3620
3641
|
function rangeCheck($this, index) {
|
|
3621
3642
|
// Inline function 'kotlin.apply' call
|
|
3622
3643
|
// Inline function 'kotlin.collections.ArrayList.rangeCheck.<anonymous>' call
|
|
3623
|
-
Companion_instance_5.m4(index, $this.
|
|
3644
|
+
Companion_instance_5.m4(index, $this.s());
|
|
3624
3645
|
return index;
|
|
3625
3646
|
}
|
|
3626
3647
|
function insertionRangeCheck($this, index) {
|
|
3627
3648
|
// Inline function 'kotlin.apply' call
|
|
3628
3649
|
// Inline function 'kotlin.collections.ArrayList.insertionRangeCheck.<anonymous>' call
|
|
3629
|
-
Companion_instance_5.d4(index, $this.
|
|
3650
|
+
Companion_instance_5.d4(index, $this.s());
|
|
3630
3651
|
return index;
|
|
3631
3652
|
}
|
|
3632
3653
|
function ArrayList(array) {
|
|
3633
3654
|
Companion_getInstance_2();
|
|
3634
3655
|
AbstractMutableList.call(this);
|
|
3635
|
-
this.
|
|
3636
|
-
this.
|
|
3656
|
+
this.h_1 = array;
|
|
3657
|
+
this.i_1 = false;
|
|
3637
3658
|
}
|
|
3638
3659
|
protoOf(ArrayList).c5 = function () {
|
|
3639
3660
|
this.t3();
|
|
3640
|
-
this.
|
|
3641
|
-
return this.
|
|
3661
|
+
this.i_1 = true;
|
|
3662
|
+
return this.s() > 0 ? this : Companion_getInstance_2().b5_1;
|
|
3642
3663
|
};
|
|
3643
|
-
protoOf(ArrayList).
|
|
3644
|
-
return this.
|
|
3664
|
+
protoOf(ArrayList).s = function () {
|
|
3665
|
+
return this.h_1.length;
|
|
3645
3666
|
};
|
|
3646
|
-
protoOf(ArrayList).
|
|
3647
|
-
var tmp = this.
|
|
3667
|
+
protoOf(ArrayList).t = function (index) {
|
|
3668
|
+
var tmp = this.h_1[rangeCheck(this, index)];
|
|
3648
3669
|
return (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
3649
3670
|
};
|
|
3650
3671
|
protoOf(ArrayList).a2 = function (index, element) {
|
|
3651
3672
|
this.t3();
|
|
3652
3673
|
rangeCheck(this, index);
|
|
3653
3674
|
// Inline function 'kotlin.apply' call
|
|
3654
|
-
var this_0 = this.
|
|
3675
|
+
var this_0 = this.h_1[index];
|
|
3655
3676
|
// Inline function 'kotlin.collections.ArrayList.set.<anonymous>' call
|
|
3656
|
-
this.
|
|
3677
|
+
this.h_1[index] = element;
|
|
3657
3678
|
var tmp = this_0;
|
|
3658
3679
|
return (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
3659
3680
|
};
|
|
3660
3681
|
protoOf(ArrayList).e = function (element) {
|
|
3661
3682
|
this.t3();
|
|
3662
3683
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3663
|
-
this.
|
|
3684
|
+
this.h_1.push(element);
|
|
3664
3685
|
this.y3_1 = this.y3_1 + 1 | 0;
|
|
3665
3686
|
return true;
|
|
3666
3687
|
};
|
|
3667
3688
|
protoOf(ArrayList).b2 = function (index, element) {
|
|
3668
3689
|
this.t3();
|
|
3669
3690
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3670
|
-
this.
|
|
3691
|
+
this.h_1.splice(insertionRangeCheck(this, index), 0, element);
|
|
3671
3692
|
this.y3_1 = this.y3_1 + 1 | 0;
|
|
3672
3693
|
};
|
|
3673
3694
|
protoOf(ArrayList).u = function (elements) {
|
|
3674
3695
|
this.t3();
|
|
3675
|
-
if (elements.
|
|
3696
|
+
if (elements.m())
|
|
3676
3697
|
return false;
|
|
3677
|
-
var offset = increaseLength(this, elements.
|
|
3698
|
+
var offset = increaseLength(this, elements.s());
|
|
3678
3699
|
// Inline function 'kotlin.collections.forEachIndexed' call
|
|
3679
3700
|
var index = 0;
|
|
3680
|
-
var _iterator__ex2g4s = elements.
|
|
3681
|
-
while (_iterator__ex2g4s.
|
|
3682
|
-
var item = _iterator__ex2g4s.
|
|
3701
|
+
var _iterator__ex2g4s = elements.p();
|
|
3702
|
+
while (_iterator__ex2g4s.q()) {
|
|
3703
|
+
var item = _iterator__ex2g4s.r();
|
|
3683
3704
|
var _unary__edvuaz = index;
|
|
3684
3705
|
index = _unary__edvuaz + 1 | 0;
|
|
3685
3706
|
// Inline function 'kotlin.collections.ArrayList.addAll.<anonymous>' call
|
|
3686
3707
|
var index_0 = checkIndexOverflow(_unary__edvuaz);
|
|
3687
|
-
this.
|
|
3708
|
+
this.h_1[offset + index_0 | 0] = item;
|
|
3688
3709
|
}
|
|
3689
3710
|
this.y3_1 = this.y3_1 + 1 | 0;
|
|
3690
3711
|
return true;
|
|
@@ -3696,10 +3717,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3696
3717
|
var tmp;
|
|
3697
3718
|
if (index === get_lastIndex_1(this)) {
|
|
3698
3719
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3699
|
-
tmp = this.
|
|
3720
|
+
tmp = this.h_1.pop();
|
|
3700
3721
|
} else {
|
|
3701
3722
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3702
|
-
tmp = this.
|
|
3723
|
+
tmp = this.h_1.splice(index, 1)[0];
|
|
3703
3724
|
}
|
|
3704
3725
|
return tmp;
|
|
3705
3726
|
};
|
|
@@ -3707,29 +3728,29 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3707
3728
|
this.t3();
|
|
3708
3729
|
this.y3_1 = this.y3_1 + 1 | 0;
|
|
3709
3730
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3710
|
-
this.
|
|
3731
|
+
this.h_1.splice(fromIndex, toIndex - fromIndex | 0);
|
|
3711
3732
|
};
|
|
3712
3733
|
protoOf(ArrayList).z1 = function () {
|
|
3713
3734
|
this.t3();
|
|
3714
3735
|
var tmp = this;
|
|
3715
3736
|
// Inline function 'kotlin.emptyArray' call
|
|
3716
|
-
tmp.
|
|
3737
|
+
tmp.h_1 = [];
|
|
3717
3738
|
this.y3_1 = this.y3_1 + 1 | 0;
|
|
3718
3739
|
};
|
|
3719
3740
|
protoOf(ArrayList).r1 = function (element) {
|
|
3720
|
-
return indexOf(this.
|
|
3741
|
+
return indexOf(this.h_1, element);
|
|
3721
3742
|
};
|
|
3722
3743
|
protoOf(ArrayList).toString = function () {
|
|
3723
|
-
return arrayToString(this.
|
|
3744
|
+
return arrayToString(this.h_1);
|
|
3724
3745
|
};
|
|
3725
3746
|
protoOf(ArrayList).d5 = function () {
|
|
3726
|
-
return [].slice.call(this.
|
|
3747
|
+
return [].slice.call(this.h_1);
|
|
3727
3748
|
};
|
|
3728
3749
|
protoOf(ArrayList).toArray = function () {
|
|
3729
3750
|
return this.d5();
|
|
3730
3751
|
};
|
|
3731
3752
|
protoOf(ArrayList).t3 = function () {
|
|
3732
|
-
if (this.
|
|
3753
|
+
if (this.i_1)
|
|
3733
3754
|
throw UnsupportedOperationException_init_$Create$();
|
|
3734
3755
|
};
|
|
3735
3756
|
var _stableSortingIsSupported;
|
|
@@ -3921,8 +3942,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3921
3942
|
protoOf(HashMap).f2 = function (key) {
|
|
3922
3943
|
return this.i5_1.f2(key);
|
|
3923
3944
|
};
|
|
3924
|
-
protoOf(HashMap).
|
|
3925
|
-
return this.i5_1.
|
|
3945
|
+
protoOf(HashMap).s = function () {
|
|
3946
|
+
return this.i5_1.s();
|
|
3926
3947
|
};
|
|
3927
3948
|
protoOf(HashMap).g2 = function (from) {
|
|
3928
3949
|
return this.i5_1.g2(from);
|
|
@@ -3934,11 +3955,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3934
3955
|
AbstractMutableSet.call(this);
|
|
3935
3956
|
this.l5_1 = backing;
|
|
3936
3957
|
}
|
|
3937
|
-
protoOf(HashMapKeys).
|
|
3938
|
-
return this.l5_1.
|
|
3958
|
+
protoOf(HashMapKeys).s = function () {
|
|
3959
|
+
return this.l5_1.s();
|
|
3939
3960
|
};
|
|
3940
|
-
protoOf(HashMapKeys).
|
|
3941
|
-
return this.l5_1.
|
|
3961
|
+
protoOf(HashMapKeys).m = function () {
|
|
3962
|
+
return this.l5_1.s() === 0;
|
|
3942
3963
|
};
|
|
3943
3964
|
protoOf(HashMapKeys).d1 = function (element) {
|
|
3944
3965
|
return this.l5_1.k5(element);
|
|
@@ -3952,7 +3973,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3952
3973
|
protoOf(HashMapKeys).d2 = function (element) {
|
|
3953
3974
|
return this.l5_1.m5(element);
|
|
3954
3975
|
};
|
|
3955
|
-
protoOf(HashMapKeys).
|
|
3976
|
+
protoOf(HashMapKeys).p = function () {
|
|
3956
3977
|
return this.l5_1.n5();
|
|
3957
3978
|
};
|
|
3958
3979
|
protoOf(HashMapKeys).t3 = function () {
|
|
@@ -3962,11 +3983,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3962
3983
|
AbstractMutableCollection.call(this);
|
|
3963
3984
|
this.p5_1 = backing;
|
|
3964
3985
|
}
|
|
3965
|
-
protoOf(HashMapValues).
|
|
3966
|
-
return this.p5_1.
|
|
3986
|
+
protoOf(HashMapValues).s = function () {
|
|
3987
|
+
return this.p5_1.s();
|
|
3967
3988
|
};
|
|
3968
|
-
protoOf(HashMapValues).
|
|
3969
|
-
return this.p5_1.
|
|
3989
|
+
protoOf(HashMapValues).m = function () {
|
|
3990
|
+
return this.p5_1.s() === 0;
|
|
3970
3991
|
};
|
|
3971
3992
|
protoOf(HashMapValues).q5 = function (element) {
|
|
3972
3993
|
return this.p5_1.v1(element);
|
|
@@ -3988,7 +4009,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3988
4009
|
protoOf(HashMapValues).u = function (elements) {
|
|
3989
4010
|
return this.s5(elements);
|
|
3990
4011
|
};
|
|
3991
|
-
protoOf(HashMapValues).
|
|
4012
|
+
protoOf(HashMapValues).p = function () {
|
|
3992
4013
|
return this.p5_1.t5();
|
|
3993
4014
|
};
|
|
3994
4015
|
protoOf(HashMapValues).t3 = function () {
|
|
@@ -3997,18 +4018,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
3997
4018
|
function HashMapEntrySet(backing) {
|
|
3998
4019
|
HashMapEntrySetBase.call(this, backing);
|
|
3999
4020
|
}
|
|
4000
|
-
protoOf(HashMapEntrySet).
|
|
4021
|
+
protoOf(HashMapEntrySet).p = function () {
|
|
4001
4022
|
return this.v5_1.w5();
|
|
4002
4023
|
};
|
|
4003
4024
|
function HashMapEntrySetBase(backing) {
|
|
4004
4025
|
AbstractMutableSet.call(this);
|
|
4005
4026
|
this.v5_1 = backing;
|
|
4006
4027
|
}
|
|
4007
|
-
protoOf(HashMapEntrySetBase).
|
|
4008
|
-
return this.v5_1.
|
|
4028
|
+
protoOf(HashMapEntrySetBase).s = function () {
|
|
4029
|
+
return this.v5_1.s();
|
|
4009
4030
|
};
|
|
4010
|
-
protoOf(HashMapEntrySetBase).
|
|
4011
|
-
return this.v5_1.
|
|
4031
|
+
protoOf(HashMapEntrySetBase).m = function () {
|
|
4032
|
+
return this.v5_1.s() === 0;
|
|
4012
4033
|
};
|
|
4013
4034
|
protoOf(HashMapEntrySetBase).x5 = function (element) {
|
|
4014
4035
|
return this.v5_1.a6(element);
|
|
@@ -4044,11 +4065,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4044
4065
|
function HashMapKeysDefault$iterator$1($entryIterator) {
|
|
4045
4066
|
this.d6_1 = $entryIterator;
|
|
4046
4067
|
}
|
|
4047
|
-
protoOf(HashMapKeysDefault$iterator$1).
|
|
4048
|
-
return this.d6_1.
|
|
4068
|
+
protoOf(HashMapKeysDefault$iterator$1).q = function () {
|
|
4069
|
+
return this.d6_1.q();
|
|
4049
4070
|
};
|
|
4050
|
-
protoOf(HashMapKeysDefault$iterator$1).
|
|
4051
|
-
return this.d6_1.
|
|
4071
|
+
protoOf(HashMapKeysDefault$iterator$1).r = function () {
|
|
4072
|
+
return this.d6_1.r().y();
|
|
4052
4073
|
};
|
|
4053
4074
|
protoOf(HashMapKeysDefault$iterator$1).u3 = function () {
|
|
4054
4075
|
return this.d6_1.u3();
|
|
@@ -4071,8 +4092,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4071
4092
|
return false;
|
|
4072
4093
|
return this.k5((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
4073
4094
|
};
|
|
4074
|
-
protoOf(HashMapKeysDefault).
|
|
4075
|
-
var entryIterator = this.e6_1.x().
|
|
4095
|
+
protoOf(HashMapKeysDefault).p = function () {
|
|
4096
|
+
var entryIterator = this.e6_1.x().p();
|
|
4076
4097
|
return new HashMapKeysDefault$iterator$1(entryIterator);
|
|
4077
4098
|
};
|
|
4078
4099
|
protoOf(HashMapKeysDefault).f2 = function (element) {
|
|
@@ -4088,8 +4109,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4088
4109
|
return false;
|
|
4089
4110
|
return this.f2((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
4090
4111
|
};
|
|
4091
|
-
protoOf(HashMapKeysDefault).
|
|
4092
|
-
return this.e6_1.
|
|
4112
|
+
protoOf(HashMapKeysDefault).s = function () {
|
|
4113
|
+
return this.e6_1.s();
|
|
4093
4114
|
};
|
|
4094
4115
|
protoOf(HashMapKeysDefault).t3 = function () {
|
|
4095
4116
|
return this.e6_1.t3();
|
|
@@ -4097,11 +4118,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4097
4118
|
function HashMapValuesDefault$iterator$1($entryIterator) {
|
|
4098
4119
|
this.g6_1 = $entryIterator;
|
|
4099
4120
|
}
|
|
4100
|
-
protoOf(HashMapValuesDefault$iterator$1).
|
|
4101
|
-
return this.g6_1.
|
|
4121
|
+
protoOf(HashMapValuesDefault$iterator$1).q = function () {
|
|
4122
|
+
return this.g6_1.q();
|
|
4102
4123
|
};
|
|
4103
|
-
protoOf(HashMapValuesDefault$iterator$1).
|
|
4104
|
-
return this.g6_1.
|
|
4124
|
+
protoOf(HashMapValuesDefault$iterator$1).r = function () {
|
|
4125
|
+
return this.g6_1.r().z();
|
|
4105
4126
|
};
|
|
4106
4127
|
protoOf(HashMapValuesDefault$iterator$1).u3 = function () {
|
|
4107
4128
|
return this.g6_1.u3();
|
|
@@ -4124,12 +4145,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4124
4145
|
return false;
|
|
4125
4146
|
return this.q5((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
4126
4147
|
};
|
|
4127
|
-
protoOf(HashMapValuesDefault).
|
|
4128
|
-
var entryIterator = this.h6_1.x().
|
|
4148
|
+
protoOf(HashMapValuesDefault).p = function () {
|
|
4149
|
+
var entryIterator = this.h6_1.x().p();
|
|
4129
4150
|
return new HashMapValuesDefault$iterator$1(entryIterator);
|
|
4130
4151
|
};
|
|
4131
|
-
protoOf(HashMapValuesDefault).
|
|
4132
|
-
return this.h6_1.
|
|
4152
|
+
protoOf(HashMapValuesDefault).s = function () {
|
|
4153
|
+
return this.h6_1.s();
|
|
4133
4154
|
};
|
|
4134
4155
|
protoOf(HashMapValuesDefault).t3 = function () {
|
|
4135
4156
|
return this.h6_1.t3();
|
|
@@ -4148,10 +4169,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4148
4169
|
return HashSet_init_$Init$_0(objectCreate(protoOf(HashSet)));
|
|
4149
4170
|
}
|
|
4150
4171
|
function HashSet_init_$Init$_1(elements, $this) {
|
|
4151
|
-
HashSet_init_$Init$(InternalHashMap_init_$Create$_0(elements.
|
|
4152
|
-
var _iterator__ex2g4s = elements.
|
|
4153
|
-
while (_iterator__ex2g4s.
|
|
4154
|
-
var element = _iterator__ex2g4s.
|
|
4172
|
+
HashSet_init_$Init$(InternalHashMap_init_$Create$_0(elements.s()), $this);
|
|
4173
|
+
var _iterator__ex2g4s = elements.p();
|
|
4174
|
+
while (_iterator__ex2g4s.q()) {
|
|
4175
|
+
var element = _iterator__ex2g4s.r();
|
|
4155
4176
|
$this.i6_1.e2(element, true);
|
|
4156
4177
|
}
|
|
4157
4178
|
return $this;
|
|
@@ -4173,17 +4194,17 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4173
4194
|
protoOf(HashSet).d1 = function (element) {
|
|
4174
4195
|
return this.i6_1.k5(element);
|
|
4175
4196
|
};
|
|
4176
|
-
protoOf(HashSet).j = function () {
|
|
4177
|
-
return this.i6_1.p() === 0;
|
|
4178
|
-
};
|
|
4179
4197
|
protoOf(HashSet).m = function () {
|
|
4198
|
+
return this.i6_1.s() === 0;
|
|
4199
|
+
};
|
|
4200
|
+
protoOf(HashSet).p = function () {
|
|
4180
4201
|
return this.i6_1.n5();
|
|
4181
4202
|
};
|
|
4182
4203
|
protoOf(HashSet).d2 = function (element) {
|
|
4183
4204
|
return !(this.i6_1.f2(element) == null);
|
|
4184
4205
|
};
|
|
4185
|
-
protoOf(HashSet).
|
|
4186
|
-
return this.i6_1.
|
|
4206
|
+
protoOf(HashSet).s = function () {
|
|
4207
|
+
return this.i6_1.s();
|
|
4187
4208
|
};
|
|
4188
4209
|
function HashSet() {
|
|
4189
4210
|
}
|
|
@@ -4213,7 +4234,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4213
4234
|
return InternalHashMap_init_$Init$_0(initialCapacity, objectCreate(protoOf(InternalHashMap)));
|
|
4214
4235
|
}
|
|
4215
4236
|
function InternalHashMap_init_$Init$_1(original, $this) {
|
|
4216
|
-
InternalHashMap_init_$Init$_0(original.
|
|
4237
|
+
InternalHashMap_init_$Init$_0(original.s(), $this);
|
|
4217
4238
|
$this.g2(original);
|
|
4218
4239
|
return $this;
|
|
4219
4240
|
}
|
|
@@ -4251,7 +4272,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4251
4272
|
}
|
|
4252
4273
|
function shouldCompact($this, extraCapacity) {
|
|
4253
4274
|
var spareCapacity = _get_capacity__a9k9f3($this) - $this.o6_1 | 0;
|
|
4254
|
-
var gaps = $this.o6_1 - $this.
|
|
4275
|
+
var gaps = $this.o6_1 - $this.s() | 0;
|
|
4255
4276
|
return spareCapacity < extraCapacity && (gaps + spareCapacity | 0) >= extraCapacity && gaps >= (_get_capacity__a9k9f3($this) / 4 | 0);
|
|
4256
4277
|
}
|
|
4257
4278
|
function ensureCapacity($this, minCapacity) {
|
|
@@ -4467,7 +4488,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4467
4488
|
}
|
|
4468
4489
|
}
|
|
4469
4490
|
function contentEquals_1($this, other) {
|
|
4470
|
-
return $this.r6_1 === other.
|
|
4491
|
+
return $this.r6_1 === other.s() && $this.c6(other.x());
|
|
4471
4492
|
}
|
|
4472
4493
|
function putEntry($this, entry) {
|
|
4473
4494
|
var index = addKey($this, entry.y());
|
|
@@ -4484,13 +4505,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4484
4505
|
return false;
|
|
4485
4506
|
}
|
|
4486
4507
|
function putAllEntries($this, from) {
|
|
4487
|
-
if (from.
|
|
4508
|
+
if (from.m())
|
|
4488
4509
|
return false;
|
|
4489
|
-
ensureExtraCapacity($this, from.
|
|
4490
|
-
var it = from.
|
|
4510
|
+
ensureExtraCapacity($this, from.s());
|
|
4511
|
+
var it = from.p();
|
|
4491
4512
|
var updated = false;
|
|
4492
|
-
while (it.
|
|
4493
|
-
if (putEntry($this, it.
|
|
4513
|
+
while (it.q()) {
|
|
4514
|
+
if (putEntry($this, it.r()))
|
|
4494
4515
|
updated = true;
|
|
4495
4516
|
}
|
|
4496
4517
|
return updated;
|
|
@@ -4517,7 +4538,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4517
4538
|
this.c7_1 = this.c7_1 + 1 | 0;
|
|
4518
4539
|
}
|
|
4519
4540
|
};
|
|
4520
|
-
protoOf(Itr).
|
|
4541
|
+
protoOf(Itr).q = function () {
|
|
4521
4542
|
return this.c7_1 < this.b7_1.o6_1;
|
|
4522
4543
|
};
|
|
4523
4544
|
protoOf(Itr).u3 = function () {
|
|
@@ -4540,7 +4561,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4540
4561
|
function KeysItr(map) {
|
|
4541
4562
|
Itr.call(this, map);
|
|
4542
4563
|
}
|
|
4543
|
-
protoOf(KeysItr).
|
|
4564
|
+
protoOf(KeysItr).r = function () {
|
|
4544
4565
|
this.g7();
|
|
4545
4566
|
if (this.c7_1 >= this.b7_1.o6_1)
|
|
4546
4567
|
throw NoSuchElementException_init_$Create$();
|
|
@@ -4555,7 +4576,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4555
4576
|
function ValuesItr(map) {
|
|
4556
4577
|
Itr.call(this, map);
|
|
4557
4578
|
}
|
|
4558
|
-
protoOf(ValuesItr).
|
|
4579
|
+
protoOf(ValuesItr).r = function () {
|
|
4559
4580
|
this.g7();
|
|
4560
4581
|
if (this.c7_1 >= this.b7_1.o6_1)
|
|
4561
4582
|
throw NoSuchElementException_init_$Create$();
|
|
@@ -4570,7 +4591,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4570
4591
|
function EntriesItr(map) {
|
|
4571
4592
|
Itr.call(this, map);
|
|
4572
4593
|
}
|
|
4573
|
-
protoOf(EntriesItr).
|
|
4594
|
+
protoOf(EntriesItr).r = function () {
|
|
4574
4595
|
this.g7();
|
|
4575
4596
|
if (this.c7_1 >= this.b7_1.o6_1)
|
|
4576
4597
|
throw NoSuchElementException_init_$Create$();
|
|
@@ -4673,7 +4694,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4673
4694
|
this.r6_1 = 0;
|
|
4674
4695
|
this.s6_1 = false;
|
|
4675
4696
|
}
|
|
4676
|
-
protoOf(InternalHashMap).
|
|
4697
|
+
protoOf(InternalHashMap).s = function () {
|
|
4677
4698
|
return this.r6_1;
|
|
4678
4699
|
};
|
|
4679
4700
|
protoOf(InternalHashMap).z7 = function () {
|
|
@@ -4735,7 +4756,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4735
4756
|
protoOf(InternalHashMap).hashCode = function () {
|
|
4736
4757
|
var result = 0;
|
|
4737
4758
|
var it = this.w5();
|
|
4738
|
-
while (it.
|
|
4759
|
+
while (it.q()) {
|
|
4739
4760
|
result = result + it.t7() | 0;
|
|
4740
4761
|
}
|
|
4741
4762
|
return result;
|
|
@@ -4745,7 +4766,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4745
4766
|
sb.x7('{');
|
|
4746
4767
|
var i = 0;
|
|
4747
4768
|
var it = this.w5();
|
|
4748
|
-
while (it.
|
|
4769
|
+
while (it.q()) {
|
|
4749
4770
|
if (i > 0) {
|
|
4750
4771
|
sb.x7(', ');
|
|
4751
4772
|
}
|
|
@@ -4847,7 +4868,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
4847
4868
|
protoOf(LinkedHashMap).c5 = function () {
|
|
4848
4869
|
this.i5_1.z7();
|
|
4849
4870
|
var tmp;
|
|
4850
|
-
if (this.
|
|
4871
|
+
if (this.s() > 0) {
|
|
4851
4872
|
tmp = this;
|
|
4852
4873
|
} else {
|
|
4853
4874
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
@@ -5698,7 +5719,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
5698
5719
|
var tmp = this.la_1;
|
|
5699
5720
|
var kClass = isInterface(tmp, KClass) ? tmp : null;
|
|
5700
5721
|
var classifierName = kClass == null ? toString_1(this.la_1) : !(kClass.aa() == null) ? kClass.aa() : '(non-denotable type)';
|
|
5701
|
-
var args = this.ma_1.
|
|
5722
|
+
var args = this.ma_1.m() ? '' : joinToString_0(this.ma_1, ', ', '<', '>');
|
|
5702
5723
|
var nullable = this.na_1 ? '?' : '';
|
|
5703
5724
|
return plus_3(classifierName, args) + nullable;
|
|
5704
5725
|
};
|
|
@@ -6155,7 +6176,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6155
6176
|
function ConstrainedOnceSequence(sequence) {
|
|
6156
6177
|
this.lb_1 = sequence;
|
|
6157
6178
|
}
|
|
6158
|
-
protoOf(ConstrainedOnceSequence).
|
|
6179
|
+
protoOf(ConstrainedOnceSequence).p = function () {
|
|
6159
6180
|
var tmp0_elvis_lhs = this.lb_1;
|
|
6160
6181
|
var tmp;
|
|
6161
6182
|
if (tmp0_elvis_lhs == null) {
|
|
@@ -6165,7 +6186,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6165
6186
|
}
|
|
6166
6187
|
var sequence = tmp;
|
|
6167
6188
|
this.lb_1 = null;
|
|
6168
|
-
return sequence.
|
|
6189
|
+
return sequence.p();
|
|
6169
6190
|
};
|
|
6170
6191
|
function CharacterCodingException_init_$Init$($this) {
|
|
6171
6192
|
CharacterCodingException.call($this, null);
|
|
@@ -6376,7 +6397,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6376
6397
|
};
|
|
6377
6398
|
}
|
|
6378
6399
|
function Regex$findAll$lambda_0(match) {
|
|
6379
|
-
return match.
|
|
6400
|
+
return match.r();
|
|
6380
6401
|
}
|
|
6381
6402
|
function Regex$replace$lambda($replacement) {
|
|
6382
6403
|
return function (it) {
|
|
@@ -6436,10 +6457,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6436
6457
|
var sb = StringBuilder_init_$Create$(length);
|
|
6437
6458
|
do {
|
|
6438
6459
|
var foundMatch = ensureNotNull(match);
|
|
6439
|
-
sb.mb(input, lastStart, foundMatch.kc().
|
|
6460
|
+
sb.mb(input, lastStart, foundMatch.kc().n());
|
|
6440
6461
|
sb.f(transform(foundMatch));
|
|
6441
|
-
lastStart = foundMatch.kc().
|
|
6442
|
-
match = foundMatch.
|
|
6462
|
+
lastStart = foundMatch.kc().o() + 1 | 0;
|
|
6463
|
+
match = foundMatch.r();
|
|
6443
6464
|
}
|
|
6444
6465
|
while (lastStart < length && !(match == null));
|
|
6445
6466
|
if (lastStart < length) {
|
|
@@ -6530,15 +6551,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6530
6551
|
if (!(_Char___init__impl__6a9atx(48) <= containsArg ? containsArg <= _Char___init__impl__6a9atx(57) : false))
|
|
6531
6552
|
throw IllegalArgumentException_init_$Create$_0('Invalid capturing group reference');
|
|
6532
6553
|
var groups = match.pc();
|
|
6533
|
-
var endIndex_0 = readGroupIndex(replacement, index, groups.
|
|
6554
|
+
var endIndex_0 = readGroupIndex(replacement, index, groups.s());
|
|
6534
6555
|
// Inline function 'kotlin.text.substring' call
|
|
6535
6556
|
var startIndex_0 = index;
|
|
6536
6557
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6537
6558
|
var tmp$ret$3 = replacement.substring(startIndex_0, endIndex_0);
|
|
6538
6559
|
var groupIndex = toInt_0(tmp$ret$3);
|
|
6539
|
-
if (groupIndex >= groups.
|
|
6560
|
+
if (groupIndex >= groups.s())
|
|
6540
6561
|
throw IndexOutOfBoundsException_init_$Create$_0('Group with index ' + groupIndex + ' does not exist');
|
|
6541
|
-
var tmp2_safe_receiver = groups.
|
|
6562
|
+
var tmp2_safe_receiver = groups.t(groupIndex);
|
|
6542
6563
|
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.lc_1;
|
|
6543
6564
|
result.x7(tmp3_elvis_lhs == null ? '' : tmp3_elvis_lhs);
|
|
6544
6565
|
index = endIndex_0;
|
|
@@ -6600,7 +6621,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6600
6621
|
}
|
|
6601
6622
|
function findNext$o$groups$o$iterator$lambda(this$0) {
|
|
6602
6623
|
return function (it) {
|
|
6603
|
-
return this$0.
|
|
6624
|
+
return this$0.t(it);
|
|
6604
6625
|
};
|
|
6605
6626
|
}
|
|
6606
6627
|
function hasOwnPrototypeProperty($this, o, name) {
|
|
@@ -6628,14 +6649,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6628
6649
|
this.sc_1 = this$0;
|
|
6629
6650
|
AbstractCollection.call(this);
|
|
6630
6651
|
}
|
|
6631
|
-
protoOf(findNext$1$groups$1).
|
|
6652
|
+
protoOf(findNext$1$groups$1).s = function () {
|
|
6632
6653
|
return this.rc_1.length;
|
|
6633
6654
|
};
|
|
6634
|
-
protoOf(findNext$1$groups$1).
|
|
6655
|
+
protoOf(findNext$1$groups$1).p = function () {
|
|
6635
6656
|
var tmp = asSequence(get_indices_0(this));
|
|
6636
|
-
return map(tmp, findNext$o$groups$o$iterator$lambda(this)).
|
|
6657
|
+
return map(tmp, findNext$o$groups$o$iterator$lambda(this)).p();
|
|
6637
6658
|
};
|
|
6638
|
-
protoOf(findNext$1$groups$1).
|
|
6659
|
+
protoOf(findNext$1$groups$1).t = function (index) {
|
|
6639
6660
|
// Inline function 'kotlin.js.get' call
|
|
6640
6661
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6641
6662
|
var tmp0_safe_receiver = this.rc_1[index];
|
|
@@ -6674,10 +6695,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6674
6695
|
this.ad_1 = $match;
|
|
6675
6696
|
AbstractList.call(this);
|
|
6676
6697
|
}
|
|
6677
|
-
protoOf(findNext$1$groupValues$1).
|
|
6698
|
+
protoOf(findNext$1$groupValues$1).s = function () {
|
|
6678
6699
|
return this.ad_1.length;
|
|
6679
6700
|
};
|
|
6680
|
-
protoOf(findNext$1$groupValues$1).
|
|
6701
|
+
protoOf(findNext$1$groupValues$1).t = function (index) {
|
|
6681
6702
|
// Inline function 'kotlin.js.get' call
|
|
6682
6703
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6683
6704
|
var tmp0_elvis_lhs = this.ad_1[index];
|
|
@@ -6712,8 +6733,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
6712
6733
|
}
|
|
6713
6734
|
return ensureNotNull(this.vc_1);
|
|
6714
6735
|
};
|
|
6715
|
-
protoOf(findNext$1).
|
|
6716
|
-
return findNext(this.yc_1, this.zc_1, this.wc_1.
|
|
6736
|
+
protoOf(findNext$1).r = function () {
|
|
6737
|
+
return findNext(this.yc_1, this.zc_1, this.wc_1.m() ? advanceToNextCharacter(this, this.wc_1.n()) : this.wc_1.o() + 1 | 0, this.yc_1);
|
|
6717
6738
|
};
|
|
6718
6739
|
function RegexOption_IGNORE_CASE_getInstance() {
|
|
6719
6740
|
RegexOption_initEntries();
|
|
@@ -7132,7 +7153,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7132
7153
|
// Inline function 'kotlin.collections.any' call
|
|
7133
7154
|
var tmp;
|
|
7134
7155
|
if (isInterface(this, Collection)) {
|
|
7135
|
-
tmp = this.
|
|
7156
|
+
tmp = this.m();
|
|
7136
7157
|
} else {
|
|
7137
7158
|
tmp = false;
|
|
7138
7159
|
}
|
|
@@ -7140,9 +7161,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7140
7161
|
tmp$ret$0 = false;
|
|
7141
7162
|
break $l$block_0;
|
|
7142
7163
|
}
|
|
7143
|
-
var _iterator__ex2g4s = this.
|
|
7144
|
-
while (_iterator__ex2g4s.
|
|
7145
|
-
var element_0 = _iterator__ex2g4s.
|
|
7164
|
+
var _iterator__ex2g4s = this.p();
|
|
7165
|
+
while (_iterator__ex2g4s.q()) {
|
|
7166
|
+
var element_0 = _iterator__ex2g4s.r();
|
|
7146
7167
|
// Inline function 'kotlin.collections.AbstractCollection.contains.<anonymous>' call
|
|
7147
7168
|
if (equals(element_0, element)) {
|
|
7148
7169
|
tmp$ret$0 = true;
|
|
@@ -7159,7 +7180,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7159
7180
|
// Inline function 'kotlin.collections.all' call
|
|
7160
7181
|
var tmp;
|
|
7161
7182
|
if (isInterface(elements, Collection)) {
|
|
7162
|
-
tmp = elements.
|
|
7183
|
+
tmp = elements.m();
|
|
7163
7184
|
} else {
|
|
7164
7185
|
tmp = false;
|
|
7165
7186
|
}
|
|
@@ -7167,9 +7188,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7167
7188
|
tmp$ret$0 = true;
|
|
7168
7189
|
break $l$block_0;
|
|
7169
7190
|
}
|
|
7170
|
-
var _iterator__ex2g4s = elements.
|
|
7171
|
-
while (_iterator__ex2g4s.
|
|
7172
|
-
var element = _iterator__ex2g4s.
|
|
7191
|
+
var _iterator__ex2g4s = elements.p();
|
|
7192
|
+
while (_iterator__ex2g4s.q()) {
|
|
7193
|
+
var element = _iterator__ex2g4s.r();
|
|
7173
7194
|
// Inline function 'kotlin.collections.AbstractCollection.containsAll.<anonymous>' call
|
|
7174
7195
|
if (!this.d1(element)) {
|
|
7175
7196
|
tmp$ret$0 = false;
|
|
@@ -7180,8 +7201,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7180
7201
|
}
|
|
7181
7202
|
return tmp$ret$0;
|
|
7182
7203
|
};
|
|
7183
|
-
protoOf(AbstractCollection).
|
|
7184
|
-
return this.
|
|
7204
|
+
protoOf(AbstractCollection).m = function () {
|
|
7205
|
+
return this.s() === 0;
|
|
7185
7206
|
};
|
|
7186
7207
|
protoOf(AbstractCollection).toString = function () {
|
|
7187
7208
|
return joinToString_0(this, ', ', '[', ']', VOID, VOID, AbstractCollection$toString$lambda(this));
|
|
@@ -7194,34 +7215,34 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7194
7215
|
this.hd_1 = list;
|
|
7195
7216
|
this.id_1 = fromIndex;
|
|
7196
7217
|
this.jd_1 = 0;
|
|
7197
|
-
Companion_instance_5.q3(this.id_1, toIndex, this.hd_1.
|
|
7218
|
+
Companion_instance_5.q3(this.id_1, toIndex, this.hd_1.s());
|
|
7198
7219
|
this.jd_1 = toIndex - this.id_1 | 0;
|
|
7199
7220
|
}
|
|
7200
|
-
protoOf(SubList_0).
|
|
7221
|
+
protoOf(SubList_0).t = function (index) {
|
|
7201
7222
|
Companion_instance_5.m4(index, this.jd_1);
|
|
7202
|
-
return this.hd_1.
|
|
7223
|
+
return this.hd_1.t(this.id_1 + index | 0);
|
|
7203
7224
|
};
|
|
7204
|
-
protoOf(SubList_0).
|
|
7225
|
+
protoOf(SubList_0).s = function () {
|
|
7205
7226
|
return this.jd_1;
|
|
7206
7227
|
};
|
|
7207
7228
|
function IteratorImpl_0($outer) {
|
|
7208
7229
|
this.ld_1 = $outer;
|
|
7209
7230
|
this.kd_1 = 0;
|
|
7210
7231
|
}
|
|
7211
|
-
protoOf(IteratorImpl_0).
|
|
7212
|
-
return this.kd_1 < this.ld_1.
|
|
7232
|
+
protoOf(IteratorImpl_0).q = function () {
|
|
7233
|
+
return this.kd_1 < this.ld_1.s();
|
|
7213
7234
|
};
|
|
7214
|
-
protoOf(IteratorImpl_0).
|
|
7215
|
-
if (!this.
|
|
7235
|
+
protoOf(IteratorImpl_0).r = function () {
|
|
7236
|
+
if (!this.q())
|
|
7216
7237
|
throw NoSuchElementException_init_$Create$();
|
|
7217
7238
|
var _unary__edvuaz = this.kd_1;
|
|
7218
7239
|
this.kd_1 = _unary__edvuaz + 1 | 0;
|
|
7219
|
-
return this.ld_1.
|
|
7240
|
+
return this.ld_1.t(_unary__edvuaz);
|
|
7220
7241
|
};
|
|
7221
7242
|
function ListIteratorImpl_0($outer, index) {
|
|
7222
7243
|
this.od_1 = $outer;
|
|
7223
7244
|
IteratorImpl_0.call(this, $outer);
|
|
7224
|
-
Companion_instance_5.d4(index, this.od_1.
|
|
7245
|
+
Companion_instance_5.d4(index, this.od_1.s());
|
|
7225
7246
|
this.kd_1 = index;
|
|
7226
7247
|
}
|
|
7227
7248
|
protoOf(ListIteratorImpl_0).e4 = function () {
|
|
@@ -7234,7 +7255,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7234
7255
|
if (!this.e4())
|
|
7235
7256
|
throw NoSuchElementException_init_$Create$();
|
|
7236
7257
|
this.kd_1 = this.kd_1 - 1 | 0;
|
|
7237
|
-
return this.od_1.
|
|
7258
|
+
return this.od_1.t(this.kd_1);
|
|
7238
7259
|
};
|
|
7239
7260
|
protoOf(ListIteratorImpl_0).h4 = function () {
|
|
7240
7261
|
return this.kd_1 - 1 | 0;
|
|
@@ -7278,9 +7299,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7278
7299
|
};
|
|
7279
7300
|
protoOf(Companion_5).p4 = function (c) {
|
|
7280
7301
|
var hashCode_0 = 1;
|
|
7281
|
-
var _iterator__ex2g4s = c.
|
|
7282
|
-
while (_iterator__ex2g4s.
|
|
7283
|
-
var e = _iterator__ex2g4s.
|
|
7302
|
+
var _iterator__ex2g4s = c.p();
|
|
7303
|
+
while (_iterator__ex2g4s.q()) {
|
|
7304
|
+
var e = _iterator__ex2g4s.r();
|
|
7284
7305
|
var tmp = imul(31, hashCode_0);
|
|
7285
7306
|
var tmp1_elvis_lhs = e == null ? null : hashCode(e);
|
|
7286
7307
|
hashCode_0 = tmp + (tmp1_elvis_lhs == null ? 0 : tmp1_elvis_lhs) | 0;
|
|
@@ -7288,13 +7309,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7288
7309
|
return hashCode_0;
|
|
7289
7310
|
};
|
|
7290
7311
|
protoOf(Companion_5).o4 = function (c, other) {
|
|
7291
|
-
if (!(c.
|
|
7312
|
+
if (!(c.s() === other.s()))
|
|
7292
7313
|
return false;
|
|
7293
|
-
var otherIterator = other.
|
|
7294
|
-
var _iterator__ex2g4s = c.
|
|
7295
|
-
while (_iterator__ex2g4s.
|
|
7296
|
-
var elem = _iterator__ex2g4s.
|
|
7297
|
-
var elemOther = otherIterator.
|
|
7314
|
+
var otherIterator = other.p();
|
|
7315
|
+
var _iterator__ex2g4s = c.p();
|
|
7316
|
+
while (_iterator__ex2g4s.q()) {
|
|
7317
|
+
var elem = _iterator__ex2g4s.r();
|
|
7318
|
+
var elemOther = otherIterator.r();
|
|
7298
7319
|
if (!equals(elem, elemOther)) {
|
|
7299
7320
|
return false;
|
|
7300
7321
|
}
|
|
@@ -7308,7 +7329,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7308
7329
|
function AbstractList() {
|
|
7309
7330
|
AbstractCollection.call(this);
|
|
7310
7331
|
}
|
|
7311
|
-
protoOf(AbstractList).
|
|
7332
|
+
protoOf(AbstractList).p = function () {
|
|
7312
7333
|
return new IteratorImpl_0(this);
|
|
7313
7334
|
};
|
|
7314
7335
|
protoOf(AbstractList).r1 = function (element) {
|
|
@@ -7316,9 +7337,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7316
7337
|
$l$block: {
|
|
7317
7338
|
// Inline function 'kotlin.collections.indexOfFirst' call
|
|
7318
7339
|
var index = 0;
|
|
7319
|
-
var _iterator__ex2g4s = this.
|
|
7320
|
-
while (_iterator__ex2g4s.
|
|
7321
|
-
var item = _iterator__ex2g4s.
|
|
7340
|
+
var _iterator__ex2g4s = this.p();
|
|
7341
|
+
while (_iterator__ex2g4s.q()) {
|
|
7342
|
+
var item = _iterator__ex2g4s.r();
|
|
7322
7343
|
// Inline function 'kotlin.collections.AbstractList.indexOf.<anonymous>' call
|
|
7323
7344
|
if (equals(item, element)) {
|
|
7324
7345
|
tmp$ret$1 = index;
|
|
@@ -7349,20 +7370,20 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7349
7370
|
function AbstractMap$keys$1$iterator$1($entryIterator) {
|
|
7350
7371
|
this.pd_1 = $entryIterator;
|
|
7351
7372
|
}
|
|
7352
|
-
protoOf(AbstractMap$keys$1$iterator$1).
|
|
7353
|
-
return this.pd_1.
|
|
7373
|
+
protoOf(AbstractMap$keys$1$iterator$1).q = function () {
|
|
7374
|
+
return this.pd_1.q();
|
|
7354
7375
|
};
|
|
7355
|
-
protoOf(AbstractMap$keys$1$iterator$1).
|
|
7356
|
-
return this.pd_1.
|
|
7376
|
+
protoOf(AbstractMap$keys$1$iterator$1).r = function () {
|
|
7377
|
+
return this.pd_1.r().y();
|
|
7357
7378
|
};
|
|
7358
7379
|
function AbstractMap$values$1$iterator$1($entryIterator) {
|
|
7359
7380
|
this.qd_1 = $entryIterator;
|
|
7360
7381
|
}
|
|
7361
|
-
protoOf(AbstractMap$values$1$iterator$1).
|
|
7362
|
-
return this.qd_1.
|
|
7382
|
+
protoOf(AbstractMap$values$1$iterator$1).q = function () {
|
|
7383
|
+
return this.qd_1.q();
|
|
7363
7384
|
};
|
|
7364
|
-
protoOf(AbstractMap$values$1$iterator$1).
|
|
7365
|
-
return this.qd_1.
|
|
7385
|
+
protoOf(AbstractMap$values$1$iterator$1).r = function () {
|
|
7386
|
+
return this.qd_1.r().z();
|
|
7366
7387
|
};
|
|
7367
7388
|
function toString_3($this, entry) {
|
|
7368
7389
|
return toString_4($this, entry.y()) + '=' + toString_4($this, entry.z());
|
|
@@ -7375,9 +7396,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7375
7396
|
var tmp$ret$1;
|
|
7376
7397
|
$l$block: {
|
|
7377
7398
|
// Inline function 'kotlin.collections.firstOrNull' call
|
|
7378
|
-
var _iterator__ex2g4s = tmp0.
|
|
7379
|
-
while (_iterator__ex2g4s.
|
|
7380
|
-
var element = _iterator__ex2g4s.
|
|
7399
|
+
var _iterator__ex2g4s = tmp0.p();
|
|
7400
|
+
while (_iterator__ex2g4s.q()) {
|
|
7401
|
+
var element = _iterator__ex2g4s.r();
|
|
7381
7402
|
// Inline function 'kotlin.collections.AbstractMap.implFindEntry.<anonymous>' call
|
|
7382
7403
|
if (equals(element.y(), key)) {
|
|
7383
7404
|
tmp$ret$1 = element;
|
|
@@ -7406,12 +7427,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7406
7427
|
return false;
|
|
7407
7428
|
return this.k5((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
7408
7429
|
};
|
|
7409
|
-
protoOf(AbstractMap$keys$1).
|
|
7410
|
-
var entryIterator = this.rd_1.x().
|
|
7430
|
+
protoOf(AbstractMap$keys$1).p = function () {
|
|
7431
|
+
var entryIterator = this.rd_1.x().p();
|
|
7411
7432
|
return new AbstractMap$keys$1$iterator$1(entryIterator);
|
|
7412
7433
|
};
|
|
7413
|
-
protoOf(AbstractMap$keys$1).
|
|
7414
|
-
return this.rd_1.
|
|
7434
|
+
protoOf(AbstractMap$keys$1).s = function () {
|
|
7435
|
+
return this.rd_1.s();
|
|
7415
7436
|
};
|
|
7416
7437
|
function AbstractMap$toString$lambda(this$0) {
|
|
7417
7438
|
return function (it) {
|
|
@@ -7430,12 +7451,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7430
7451
|
return false;
|
|
7431
7452
|
return this.q5((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
7432
7453
|
};
|
|
7433
|
-
protoOf(AbstractMap$values$1).
|
|
7434
|
-
var entryIterator = this.sd_1.x().
|
|
7454
|
+
protoOf(AbstractMap$values$1).p = function () {
|
|
7455
|
+
var entryIterator = this.sd_1.x().p();
|
|
7435
7456
|
return new AbstractMap$values$1$iterator$1(entryIterator);
|
|
7436
7457
|
};
|
|
7437
|
-
protoOf(AbstractMap$values$1).
|
|
7438
|
-
return this.sd_1.
|
|
7458
|
+
protoOf(AbstractMap$values$1).s = function () {
|
|
7459
|
+
return this.sd_1.s();
|
|
7439
7460
|
};
|
|
7440
7461
|
function AbstractMap() {
|
|
7441
7462
|
this.w4_1 = null;
|
|
@@ -7451,7 +7472,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7451
7472
|
// Inline function 'kotlin.collections.any' call
|
|
7452
7473
|
var tmp;
|
|
7453
7474
|
if (isInterface(tmp0, Collection)) {
|
|
7454
|
-
tmp = tmp0.
|
|
7475
|
+
tmp = tmp0.m();
|
|
7455
7476
|
} else {
|
|
7456
7477
|
tmp = false;
|
|
7457
7478
|
}
|
|
@@ -7459,9 +7480,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7459
7480
|
tmp$ret$0 = false;
|
|
7460
7481
|
break $l$block_0;
|
|
7461
7482
|
}
|
|
7462
|
-
var _iterator__ex2g4s = tmp0.
|
|
7463
|
-
while (_iterator__ex2g4s.
|
|
7464
|
-
var element = _iterator__ex2g4s.
|
|
7483
|
+
var _iterator__ex2g4s = tmp0.p();
|
|
7484
|
+
while (_iterator__ex2g4s.q()) {
|
|
7485
|
+
var element = _iterator__ex2g4s.r();
|
|
7465
7486
|
// Inline function 'kotlin.collections.AbstractMap.containsValue.<anonymous>' call
|
|
7466
7487
|
if (equals(element.z(), value)) {
|
|
7467
7488
|
tmp$ret$0 = true;
|
|
@@ -7499,7 +7520,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7499
7520
|
return true;
|
|
7500
7521
|
if (!(!(other == null) ? isInterface(other, KtMap) : false))
|
|
7501
7522
|
return false;
|
|
7502
|
-
if (!(this.
|
|
7523
|
+
if (!(this.s() === other.s()))
|
|
7503
7524
|
return false;
|
|
7504
7525
|
var tmp0 = other.x();
|
|
7505
7526
|
var tmp$ret$0;
|
|
@@ -7507,7 +7528,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7507
7528
|
// Inline function 'kotlin.collections.all' call
|
|
7508
7529
|
var tmp;
|
|
7509
7530
|
if (isInterface(tmp0, Collection)) {
|
|
7510
|
-
tmp = tmp0.
|
|
7531
|
+
tmp = tmp0.m();
|
|
7511
7532
|
} else {
|
|
7512
7533
|
tmp = false;
|
|
7513
7534
|
}
|
|
@@ -7515,9 +7536,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7515
7536
|
tmp$ret$0 = true;
|
|
7516
7537
|
break $l$block_0;
|
|
7517
7538
|
}
|
|
7518
|
-
var _iterator__ex2g4s = tmp0.
|
|
7519
|
-
while (_iterator__ex2g4s.
|
|
7520
|
-
var element = _iterator__ex2g4s.
|
|
7539
|
+
var _iterator__ex2g4s = tmp0.p();
|
|
7540
|
+
while (_iterator__ex2g4s.q()) {
|
|
7541
|
+
var element = _iterator__ex2g4s.r();
|
|
7521
7542
|
// Inline function 'kotlin.collections.AbstractMap.equals.<anonymous>' call
|
|
7522
7543
|
if (!this.y4(element)) {
|
|
7523
7544
|
tmp$ret$0 = false;
|
|
@@ -7535,11 +7556,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7535
7556
|
protoOf(AbstractMap).hashCode = function () {
|
|
7536
7557
|
return hashCode(this.x());
|
|
7537
7558
|
};
|
|
7538
|
-
protoOf(AbstractMap).
|
|
7539
|
-
return this.
|
|
7559
|
+
protoOf(AbstractMap).m = function () {
|
|
7560
|
+
return this.s() === 0;
|
|
7540
7561
|
};
|
|
7541
|
-
protoOf(AbstractMap).
|
|
7542
|
-
return this.x().
|
|
7562
|
+
protoOf(AbstractMap).s = function () {
|
|
7563
|
+
return this.x().s();
|
|
7543
7564
|
};
|
|
7544
7565
|
protoOf(AbstractMap).x1 = function () {
|
|
7545
7566
|
if (this.w4_1 == null) {
|
|
@@ -7563,9 +7584,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7563
7584
|
}
|
|
7564
7585
|
protoOf(Companion_7).a5 = function (c) {
|
|
7565
7586
|
var hashCode_0 = 0;
|
|
7566
|
-
var _iterator__ex2g4s = c.
|
|
7567
|
-
while (_iterator__ex2g4s.
|
|
7568
|
-
var element = _iterator__ex2g4s.
|
|
7587
|
+
var _iterator__ex2g4s = c.p();
|
|
7588
|
+
while (_iterator__ex2g4s.q()) {
|
|
7589
|
+
var element = _iterator__ex2g4s.r();
|
|
7569
7590
|
var tmp = hashCode_0;
|
|
7570
7591
|
var tmp1_elvis_lhs = element == null ? null : hashCode(element);
|
|
7571
7592
|
hashCode_0 = tmp + (tmp1_elvis_lhs == null ? 0 : tmp1_elvis_lhs) | 0;
|
|
@@ -7573,7 +7594,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7573
7594
|
return hashCode_0;
|
|
7574
7595
|
};
|
|
7575
7596
|
protoOf(Companion_7).z4 = function (c, other) {
|
|
7576
|
-
if (!(c.
|
|
7597
|
+
if (!(c.s() === other.s()))
|
|
7577
7598
|
return false;
|
|
7578
7599
|
return c.t1(other);
|
|
7579
7600
|
};
|
|
@@ -7595,19 +7616,19 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7595
7616
|
return Companion_instance_7.a5(this);
|
|
7596
7617
|
};
|
|
7597
7618
|
function collectionToArrayCommonImpl(collection) {
|
|
7598
|
-
if (collection.
|
|
7619
|
+
if (collection.m()) {
|
|
7599
7620
|
// Inline function 'kotlin.emptyArray' call
|
|
7600
7621
|
return [];
|
|
7601
7622
|
}
|
|
7602
7623
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
7603
|
-
var size = collection.
|
|
7624
|
+
var size = collection.s();
|
|
7604
7625
|
var destination = fillArrayVal(Array(size), null);
|
|
7605
|
-
var iterator = collection.
|
|
7626
|
+
var iterator = collection.p();
|
|
7606
7627
|
var index = 0;
|
|
7607
|
-
while (iterator.
|
|
7628
|
+
while (iterator.q()) {
|
|
7608
7629
|
var _unary__edvuaz = index;
|
|
7609
7630
|
index = _unary__edvuaz + 1 | 0;
|
|
7610
|
-
destination[_unary__edvuaz] = iterator.
|
|
7631
|
+
destination[_unary__edvuaz] = iterator.r();
|
|
7611
7632
|
}
|
|
7612
7633
|
return destination;
|
|
7613
7634
|
}
|
|
@@ -7618,7 +7639,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7618
7639
|
return elements.length > 0 ? asList(elements) : emptyList();
|
|
7619
7640
|
}
|
|
7620
7641
|
function get_indices_0(_this__u8e3s4) {
|
|
7621
|
-
return numberRangeToNumber(0, _this__u8e3s4.
|
|
7642
|
+
return numberRangeToNumber(0, _this__u8e3s4.s() - 1 | 0);
|
|
7622
7643
|
}
|
|
7623
7644
|
function mutableListOf(elements) {
|
|
7624
7645
|
return elements.length === 0 ? ArrayList_init_$Create$() : ArrayList_init_$Create$_1(new ArrayAsCollection(elements, true));
|
|
@@ -7627,7 +7648,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7627
7648
|
return filterNotNull(elements);
|
|
7628
7649
|
}
|
|
7629
7650
|
function get_lastIndex_1(_this__u8e3s4) {
|
|
7630
|
-
return _this__u8e3s4.
|
|
7651
|
+
return _this__u8e3s4.s() - 1 | 0;
|
|
7631
7652
|
}
|
|
7632
7653
|
function EmptyList() {
|
|
7633
7654
|
EmptyList_instance = this;
|
|
@@ -7636,7 +7657,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7636
7657
|
protoOf(EmptyList).equals = function (other) {
|
|
7637
7658
|
var tmp;
|
|
7638
7659
|
if (!(other == null) ? isInterface(other, KtList) : false) {
|
|
7639
|
-
tmp = other.
|
|
7660
|
+
tmp = other.m();
|
|
7640
7661
|
} else {
|
|
7641
7662
|
tmp = false;
|
|
7642
7663
|
}
|
|
@@ -7648,10 +7669,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7648
7669
|
protoOf(EmptyList).toString = function () {
|
|
7649
7670
|
return '[]';
|
|
7650
7671
|
};
|
|
7651
|
-
protoOf(EmptyList).
|
|
7672
|
+
protoOf(EmptyList).s = function () {
|
|
7652
7673
|
return 0;
|
|
7653
7674
|
};
|
|
7654
|
-
protoOf(EmptyList).
|
|
7675
|
+
protoOf(EmptyList).m = function () {
|
|
7655
7676
|
return true;
|
|
7656
7677
|
};
|
|
7657
7678
|
protoOf(EmptyList).ud = function (element) {
|
|
@@ -7668,7 +7689,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7668
7689
|
}
|
|
7669
7690
|
return this.ud(tmp);
|
|
7670
7691
|
};
|
|
7671
|
-
protoOf(EmptyList).
|
|
7692
|
+
protoOf(EmptyList).t = function (index) {
|
|
7672
7693
|
throw IndexOutOfBoundsException_init_$Create$_0("Empty list doesn't contain element at index " + index + '.');
|
|
7673
7694
|
};
|
|
7674
7695
|
protoOf(EmptyList).vd = function (element) {
|
|
@@ -7685,7 +7706,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7685
7706
|
}
|
|
7686
7707
|
return this.vd(tmp);
|
|
7687
7708
|
};
|
|
7688
|
-
protoOf(EmptyList).
|
|
7709
|
+
protoOf(EmptyList).p = function () {
|
|
7689
7710
|
return EmptyIterator_instance;
|
|
7690
7711
|
};
|
|
7691
7712
|
protoOf(EmptyList).v = function (index) {
|
|
@@ -7708,10 +7729,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7708
7729
|
this.wd_1 = values;
|
|
7709
7730
|
this.xd_1 = isVarargs;
|
|
7710
7731
|
}
|
|
7711
|
-
protoOf(ArrayAsCollection).
|
|
7732
|
+
protoOf(ArrayAsCollection).s = function () {
|
|
7712
7733
|
return this.wd_1.length;
|
|
7713
7734
|
};
|
|
7714
|
-
protoOf(ArrayAsCollection).
|
|
7735
|
+
protoOf(ArrayAsCollection).m = function () {
|
|
7715
7736
|
// Inline function 'kotlin.collections.isEmpty' call
|
|
7716
7737
|
return this.wd_1.length === 0;
|
|
7717
7738
|
};
|
|
@@ -7723,18 +7744,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7723
7744
|
return false;
|
|
7724
7745
|
return this.yd((element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
7725
7746
|
};
|
|
7726
|
-
protoOf(ArrayAsCollection).
|
|
7747
|
+
protoOf(ArrayAsCollection).p = function () {
|
|
7727
7748
|
return arrayIterator(this.wd_1);
|
|
7728
7749
|
};
|
|
7729
7750
|
function binarySearch(_this__u8e3s4, fromIndex, toIndex, comparison) {
|
|
7730
7751
|
fromIndex = fromIndex === VOID ? 0 : fromIndex;
|
|
7731
|
-
toIndex = toIndex === VOID ? _this__u8e3s4.
|
|
7732
|
-
rangeCheck_0(_this__u8e3s4.
|
|
7752
|
+
toIndex = toIndex === VOID ? _this__u8e3s4.s() : toIndex;
|
|
7753
|
+
rangeCheck_0(_this__u8e3s4.s(), fromIndex, toIndex);
|
|
7733
7754
|
var low = fromIndex;
|
|
7734
7755
|
var high = toIndex - 1 | 0;
|
|
7735
7756
|
while (low <= high) {
|
|
7736
7757
|
var mid = (low + high | 0) >>> 1 | 0;
|
|
7737
|
-
var midVal = _this__u8e3s4.
|
|
7758
|
+
var midVal = _this__u8e3s4.t(mid);
|
|
7738
7759
|
var cmp = comparison(midVal);
|
|
7739
7760
|
if (cmp < 0)
|
|
7740
7761
|
low = mid + 1 | 0;
|
|
@@ -7747,7 +7768,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7747
7768
|
}
|
|
7748
7769
|
function EmptyIterator() {
|
|
7749
7770
|
}
|
|
7750
|
-
protoOf(EmptyIterator).
|
|
7771
|
+
protoOf(EmptyIterator).q = function () {
|
|
7751
7772
|
return false;
|
|
7752
7773
|
};
|
|
7753
7774
|
protoOf(EmptyIterator).e4 = function () {
|
|
@@ -7759,7 +7780,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7759
7780
|
protoOf(EmptyIterator).h4 = function () {
|
|
7760
7781
|
return -1;
|
|
7761
7782
|
};
|
|
7762
|
-
protoOf(EmptyIterator).
|
|
7783
|
+
protoOf(EmptyIterator).r = function () {
|
|
7763
7784
|
throw NoSuchElementException_init_$Create$();
|
|
7764
7785
|
};
|
|
7765
7786
|
protoOf(EmptyIterator).g4 = function () {
|
|
@@ -7778,11 +7799,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7778
7799
|
throw IndexOutOfBoundsException_init_$Create$_0('toIndex (' + toIndex + ') is greater than size (' + size + ').');
|
|
7779
7800
|
}
|
|
7780
7801
|
function optimizeReadOnlyList(_this__u8e3s4) {
|
|
7781
|
-
switch (_this__u8e3s4.
|
|
7802
|
+
switch (_this__u8e3s4.s()) {
|
|
7782
7803
|
case 0:
|
|
7783
7804
|
return emptyList();
|
|
7784
7805
|
case 1:
|
|
7785
|
-
return listOf(_this__u8e3s4.
|
|
7806
|
+
return listOf(_this__u8e3s4.t(0));
|
|
7786
7807
|
default:
|
|
7787
7808
|
return _this__u8e3s4;
|
|
7788
7809
|
}
|
|
@@ -7831,9 +7852,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7831
7852
|
};
|
|
7832
7853
|
function flatten(_this__u8e3s4) {
|
|
7833
7854
|
var result = ArrayList_init_$Create$();
|
|
7834
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
7835
|
-
while (_iterator__ex2g4s.
|
|
7836
|
-
var element = _iterator__ex2g4s.
|
|
7855
|
+
var _iterator__ex2g4s = _this__u8e3s4.p();
|
|
7856
|
+
while (_iterator__ex2g4s.q()) {
|
|
7857
|
+
var element = _iterator__ex2g4s.r();
|
|
7837
7858
|
addAll(result, element);
|
|
7838
7859
|
}
|
|
7839
7860
|
return result;
|
|
@@ -7841,7 +7862,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7841
7862
|
function collectionSizeOrDefault(_this__u8e3s4, default_0) {
|
|
7842
7863
|
var tmp;
|
|
7843
7864
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
7844
|
-
tmp = _this__u8e3s4.
|
|
7865
|
+
tmp = _this__u8e3s4.s();
|
|
7845
7866
|
} else {
|
|
7846
7867
|
tmp = default_0;
|
|
7847
7868
|
}
|
|
@@ -7850,13 +7871,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7850
7871
|
function IndexingIterable(iteratorFactory) {
|
|
7851
7872
|
this.be_1 = iteratorFactory;
|
|
7852
7873
|
}
|
|
7853
|
-
protoOf(IndexingIterable).
|
|
7874
|
+
protoOf(IndexingIterable).p = function () {
|
|
7854
7875
|
return new IndexingIterator(this.be_1());
|
|
7855
7876
|
};
|
|
7856
7877
|
function collectionSizeOrNull(_this__u8e3s4) {
|
|
7857
7878
|
var tmp;
|
|
7858
7879
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
7859
|
-
tmp = _this__u8e3s4.
|
|
7880
|
+
tmp = _this__u8e3s4.s();
|
|
7860
7881
|
} else {
|
|
7861
7882
|
tmp = null;
|
|
7862
7883
|
}
|
|
@@ -7866,13 +7887,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7866
7887
|
this.ce_1 = iterator;
|
|
7867
7888
|
this.de_1 = 0;
|
|
7868
7889
|
}
|
|
7869
|
-
protoOf(IndexingIterator).
|
|
7870
|
-
return this.ce_1.
|
|
7890
|
+
protoOf(IndexingIterator).q = function () {
|
|
7891
|
+
return this.ce_1.q();
|
|
7871
7892
|
};
|
|
7872
|
-
protoOf(IndexingIterator).
|
|
7893
|
+
protoOf(IndexingIterator).r = function () {
|
|
7873
7894
|
var _unary__edvuaz = this.de_1;
|
|
7874
7895
|
this.de_1 = _unary__edvuaz + 1 | 0;
|
|
7875
|
-
return new IndexedValue(checkIndexOverflow(_unary__edvuaz), this.ce_1.
|
|
7896
|
+
return new IndexedValue(checkIndexOverflow(_unary__edvuaz), this.ce_1.r());
|
|
7876
7897
|
};
|
|
7877
7898
|
function getOrImplicitDefault(_this__u8e3s4, key) {
|
|
7878
7899
|
if (isInterface(_this__u8e3s4, MapWithDefault))
|
|
@@ -7905,22 +7926,22 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7905
7926
|
function toMap(_this__u8e3s4) {
|
|
7906
7927
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
7907
7928
|
var tmp;
|
|
7908
|
-
switch (_this__u8e3s4.
|
|
7929
|
+
switch (_this__u8e3s4.s()) {
|
|
7909
7930
|
case 0:
|
|
7910
7931
|
tmp = emptyMap();
|
|
7911
7932
|
break;
|
|
7912
7933
|
case 1:
|
|
7913
7934
|
var tmp_0;
|
|
7914
7935
|
if (isInterface(_this__u8e3s4, KtList)) {
|
|
7915
|
-
tmp_0 = _this__u8e3s4.
|
|
7936
|
+
tmp_0 = _this__u8e3s4.t(0);
|
|
7916
7937
|
} else {
|
|
7917
|
-
tmp_0 = _this__u8e3s4.
|
|
7938
|
+
tmp_0 = _this__u8e3s4.p().r();
|
|
7918
7939
|
}
|
|
7919
7940
|
|
|
7920
7941
|
tmp = mapOf(tmp_0);
|
|
7921
7942
|
break;
|
|
7922
7943
|
default:
|
|
7923
|
-
tmp = toMap_1(_this__u8e3s4, LinkedHashMap_init_$Create$_0(mapCapacity(_this__u8e3s4.
|
|
7944
|
+
tmp = toMap_1(_this__u8e3s4, LinkedHashMap_init_$Create$_0(mapCapacity(_this__u8e3s4.s())));
|
|
7924
7945
|
break;
|
|
7925
7946
|
}
|
|
7926
7947
|
return tmp;
|
|
@@ -7944,7 +7965,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7944
7965
|
protoOf(EmptyMap).equals = function (other) {
|
|
7945
7966
|
var tmp;
|
|
7946
7967
|
if (!(other == null) ? isInterface(other, KtMap) : false) {
|
|
7947
|
-
tmp = other.
|
|
7968
|
+
tmp = other.m();
|
|
7948
7969
|
} else {
|
|
7949
7970
|
tmp = false;
|
|
7950
7971
|
}
|
|
@@ -7956,10 +7977,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
7956
7977
|
protoOf(EmptyMap).toString = function () {
|
|
7957
7978
|
return '{}';
|
|
7958
7979
|
};
|
|
7959
|
-
protoOf(EmptyMap).
|
|
7980
|
+
protoOf(EmptyMap).s = function () {
|
|
7960
7981
|
return 0;
|
|
7961
7982
|
};
|
|
7962
|
-
protoOf(EmptyMap).
|
|
7983
|
+
protoOf(EmptyMap).m = function () {
|
|
7963
7984
|
return true;
|
|
7964
7985
|
};
|
|
7965
7986
|
protoOf(EmptyMap).ge = function (key) {
|
|
@@ -8007,7 +8028,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8007
8028
|
}
|
|
8008
8029
|
function optimizeReadOnlyMap(_this__u8e3s4) {
|
|
8009
8030
|
var tmp;
|
|
8010
|
-
switch (_this__u8e3s4.
|
|
8031
|
+
switch (_this__u8e3s4.s()) {
|
|
8011
8032
|
case 0:
|
|
8012
8033
|
tmp = emptyMap();
|
|
8013
8034
|
break;
|
|
@@ -8034,9 +8055,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8034
8055
|
}
|
|
8035
8056
|
}
|
|
8036
8057
|
function putAll_0(_this__u8e3s4, pairs) {
|
|
8037
|
-
var _iterator__ex2g4s = pairs.
|
|
8038
|
-
while (_iterator__ex2g4s.
|
|
8039
|
-
var _destruct__k2r9zo = _iterator__ex2g4s.
|
|
8058
|
+
var _iterator__ex2g4s = pairs.p();
|
|
8059
|
+
while (_iterator__ex2g4s.q()) {
|
|
8060
|
+
var _destruct__k2r9zo = _iterator__ex2g4s.r();
|
|
8040
8061
|
var key = _destruct__k2r9zo.w9();
|
|
8041
8062
|
var value = _destruct__k2r9zo.x9();
|
|
8042
8063
|
_this__u8e3s4.e2(key, value);
|
|
@@ -8057,16 +8078,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8057
8078
|
return this_0;
|
|
8058
8079
|
}
|
|
8059
8080
|
function removeLastOrNull(_this__u8e3s4) {
|
|
8060
|
-
return _this__u8e3s4.
|
|
8081
|
+
return _this__u8e3s4.m() ? null : _this__u8e3s4.c2(get_lastIndex_1(_this__u8e3s4));
|
|
8061
8082
|
}
|
|
8062
8083
|
function addAll(_this__u8e3s4, elements) {
|
|
8063
8084
|
if (isInterface(elements, Collection))
|
|
8064
8085
|
return _this__u8e3s4.u(elements);
|
|
8065
8086
|
else {
|
|
8066
8087
|
var result = false;
|
|
8067
|
-
var _iterator__ex2g4s = elements.
|
|
8068
|
-
while (_iterator__ex2g4s.
|
|
8069
|
-
var item = _iterator__ex2g4s.
|
|
8088
|
+
var _iterator__ex2g4s = elements.p();
|
|
8089
|
+
while (_iterator__ex2g4s.q()) {
|
|
8090
|
+
var item = _iterator__ex2g4s.r();
|
|
8070
8091
|
if (_this__u8e3s4.e(item))
|
|
8071
8092
|
result = true;
|
|
8072
8093
|
}
|
|
@@ -8089,9 +8110,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8089
8110
|
var result = false;
|
|
8090
8111
|
// Inline function 'kotlin.with' call
|
|
8091
8112
|
// Inline function 'kotlin.collections.filterInPlace.<anonymous>' call
|
|
8092
|
-
var $this$with = _this__u8e3s4.
|
|
8093
|
-
while ($this$with.
|
|
8094
|
-
if (predicate($this$with.
|
|
8113
|
+
var $this$with = _this__u8e3s4.p();
|
|
8114
|
+
while ($this$with.q())
|
|
8115
|
+
if (predicate($this$with.r()) === predicateResultToRemove) {
|
|
8095
8116
|
$this$with.u3();
|
|
8096
8117
|
result = true;
|
|
8097
8118
|
}
|
|
@@ -8099,7 +8120,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8099
8120
|
}
|
|
8100
8121
|
function removeLast(_this__u8e3s4) {
|
|
8101
8122
|
var tmp;
|
|
8102
|
-
if (_this__u8e3s4.
|
|
8123
|
+
if (_this__u8e3s4.m()) {
|
|
8103
8124
|
throw NoSuchElementException_init_$Create$_0('List is empty.');
|
|
8104
8125
|
} else {
|
|
8105
8126
|
tmp = _this__u8e3s4.c2(get_lastIndex_1(_this__u8e3s4));
|
|
@@ -8111,7 +8132,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8111
8132
|
}
|
|
8112
8133
|
function IntIterator() {
|
|
8113
8134
|
}
|
|
8114
|
-
protoOf(IntIterator).
|
|
8135
|
+
protoOf(IntIterator).r = function () {
|
|
8115
8136
|
return this.ie();
|
|
8116
8137
|
};
|
|
8117
8138
|
function asReversed(_this__u8e3s4) {
|
|
@@ -8124,20 +8145,20 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8124
8145
|
this.ke_1 = this$0;
|
|
8125
8146
|
this.je_1 = this$0.le_1.v(reversePositionIndex(this$0, $index));
|
|
8126
8147
|
}
|
|
8127
|
-
protoOf(ReversedListReadOnly$listIterator$1).
|
|
8148
|
+
protoOf(ReversedListReadOnly$listIterator$1).q = function () {
|
|
8128
8149
|
return this.je_1.e4();
|
|
8129
8150
|
};
|
|
8130
8151
|
protoOf(ReversedListReadOnly$listIterator$1).e4 = function () {
|
|
8131
|
-
return this.je_1.
|
|
8152
|
+
return this.je_1.q();
|
|
8132
8153
|
};
|
|
8133
|
-
protoOf(ReversedListReadOnly$listIterator$1).
|
|
8154
|
+
protoOf(ReversedListReadOnly$listIterator$1).r = function () {
|
|
8134
8155
|
return this.je_1.g4();
|
|
8135
8156
|
};
|
|
8136
8157
|
protoOf(ReversedListReadOnly$listIterator$1).f4 = function () {
|
|
8137
8158
|
return reverseIteratorIndex(this.ke_1, this.je_1.h4());
|
|
8138
8159
|
};
|
|
8139
8160
|
protoOf(ReversedListReadOnly$listIterator$1).g4 = function () {
|
|
8140
|
-
return this.je_1.
|
|
8161
|
+
return this.je_1.r();
|
|
8141
8162
|
};
|
|
8142
8163
|
protoOf(ReversedListReadOnly$listIterator$1).h4 = function () {
|
|
8143
8164
|
return reverseIteratorIndex(this.ke_1, this.je_1.f4());
|
|
@@ -8146,13 +8167,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8146
8167
|
AbstractList.call(this);
|
|
8147
8168
|
this.le_1 = delegate;
|
|
8148
8169
|
}
|
|
8149
|
-
protoOf(ReversedListReadOnly).
|
|
8150
|
-
return this.le_1.
|
|
8170
|
+
protoOf(ReversedListReadOnly).s = function () {
|
|
8171
|
+
return this.le_1.s();
|
|
8151
8172
|
};
|
|
8152
|
-
protoOf(ReversedListReadOnly).
|
|
8153
|
-
return this.le_1.
|
|
8173
|
+
protoOf(ReversedListReadOnly).t = function (index) {
|
|
8174
|
+
return this.le_1.t(reverseElementIndex(this, index));
|
|
8154
8175
|
};
|
|
8155
|
-
protoOf(ReversedListReadOnly).
|
|
8176
|
+
protoOf(ReversedListReadOnly).p = function () {
|
|
8156
8177
|
return this.v(0);
|
|
8157
8178
|
};
|
|
8158
8179
|
protoOf(ReversedListReadOnly).v = function (index) {
|
|
@@ -8162,20 +8183,20 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8162
8183
|
this.ne_1 = this$0;
|
|
8163
8184
|
this.me_1 = this$0.pe_1.v(reversePositionIndex(this$0, $index));
|
|
8164
8185
|
}
|
|
8165
|
-
protoOf(ReversedList$listIterator$1).
|
|
8186
|
+
protoOf(ReversedList$listIterator$1).q = function () {
|
|
8166
8187
|
return this.me_1.e4();
|
|
8167
8188
|
};
|
|
8168
8189
|
protoOf(ReversedList$listIterator$1).e4 = function () {
|
|
8169
|
-
return this.me_1.
|
|
8190
|
+
return this.me_1.q();
|
|
8170
8191
|
};
|
|
8171
|
-
protoOf(ReversedList$listIterator$1).
|
|
8192
|
+
protoOf(ReversedList$listIterator$1).r = function () {
|
|
8172
8193
|
return this.me_1.g4();
|
|
8173
8194
|
};
|
|
8174
8195
|
protoOf(ReversedList$listIterator$1).f4 = function () {
|
|
8175
8196
|
return reverseIteratorIndex(this.ne_1, this.me_1.h4());
|
|
8176
8197
|
};
|
|
8177
8198
|
protoOf(ReversedList$listIterator$1).g4 = function () {
|
|
8178
|
-
return this.me_1.
|
|
8199
|
+
return this.me_1.r();
|
|
8179
8200
|
};
|
|
8180
8201
|
protoOf(ReversedList$listIterator$1).h4 = function () {
|
|
8181
8202
|
return reverseIteratorIndex(this.ne_1, this.me_1.f4());
|
|
@@ -8187,11 +8208,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8187
8208
|
AbstractMutableList.call(this);
|
|
8188
8209
|
this.pe_1 = delegate;
|
|
8189
8210
|
}
|
|
8190
|
-
protoOf(ReversedList).
|
|
8191
|
-
return this.pe_1.
|
|
8211
|
+
protoOf(ReversedList).s = function () {
|
|
8212
|
+
return this.pe_1.s();
|
|
8192
8213
|
};
|
|
8193
|
-
protoOf(ReversedList).
|
|
8194
|
-
return this.pe_1.
|
|
8214
|
+
protoOf(ReversedList).t = function (index) {
|
|
8215
|
+
return this.pe_1.t(reverseElementIndex(this, index));
|
|
8195
8216
|
};
|
|
8196
8217
|
protoOf(ReversedList).z1 = function () {
|
|
8197
8218
|
return this.pe_1.z1();
|
|
@@ -8211,7 +8232,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8211
8232
|
protoOf(ReversedList).b2 = function (index, element) {
|
|
8212
8233
|
return this.re(index, (element == null ? true : !(element == null)) ? element : THROW_CCE());
|
|
8213
8234
|
};
|
|
8214
|
-
protoOf(ReversedList).
|
|
8235
|
+
protoOf(ReversedList).p = function () {
|
|
8215
8236
|
return this.v(0);
|
|
8216
8237
|
};
|
|
8217
8238
|
protoOf(ReversedList).v = function (index) {
|
|
@@ -8228,10 +8249,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8228
8249
|
}
|
|
8229
8250
|
function reversePositionIndex(_this__u8e3s4, index) {
|
|
8230
8251
|
var tmp;
|
|
8231
|
-
if (0 <= index ? index <= _this__u8e3s4.
|
|
8232
|
-
tmp = _this__u8e3s4.
|
|
8252
|
+
if (0 <= index ? index <= _this__u8e3s4.s() : false) {
|
|
8253
|
+
tmp = _this__u8e3s4.s() - index | 0;
|
|
8233
8254
|
} else {
|
|
8234
|
-
throw IndexOutOfBoundsException_init_$Create$_0('Position index ' + index + ' must be in range [' + numberRangeToNumber(0, _this__u8e3s4.
|
|
8255
|
+
throw IndexOutOfBoundsException_init_$Create$_0('Position index ' + index + ' must be in range [' + numberRangeToNumber(0, _this__u8e3s4.s()).toString() + '].');
|
|
8235
8256
|
}
|
|
8236
8257
|
return tmp;
|
|
8237
8258
|
}
|
|
@@ -8247,7 +8268,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8247
8268
|
function SequenceScope() {
|
|
8248
8269
|
}
|
|
8249
8270
|
protoOf(SequenceScope).ue = function (sequence, $completion) {
|
|
8250
|
-
return this.te(sequence.
|
|
8271
|
+
return this.te(sequence.p(), $completion);
|
|
8251
8272
|
};
|
|
8252
8273
|
function iterator(block) {
|
|
8253
8274
|
var iterator = new SequenceBuilderIterator();
|
|
@@ -8255,10 +8276,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8255
8276
|
return iterator;
|
|
8256
8277
|
}
|
|
8257
8278
|
function nextNotReady($this) {
|
|
8258
|
-
if (!$this.
|
|
8279
|
+
if (!$this.q())
|
|
8259
8280
|
throw NoSuchElementException_init_$Create$();
|
|
8260
8281
|
else
|
|
8261
|
-
return $this.
|
|
8282
|
+
return $this.r();
|
|
8262
8283
|
}
|
|
8263
8284
|
function exceptionalState($this) {
|
|
8264
8285
|
switch ($this.ve_1) {
|
|
@@ -8277,13 +8298,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8277
8298
|
this.xe_1 = null;
|
|
8278
8299
|
this.ye_1 = null;
|
|
8279
8300
|
}
|
|
8280
|
-
protoOf(SequenceBuilderIterator).
|
|
8301
|
+
protoOf(SequenceBuilderIterator).q = function () {
|
|
8281
8302
|
while (true) {
|
|
8282
8303
|
switch (this.ve_1) {
|
|
8283
8304
|
case 0:
|
|
8284
8305
|
break;
|
|
8285
8306
|
case 1:
|
|
8286
|
-
if (ensureNotNull(this.xe_1).
|
|
8307
|
+
if (ensureNotNull(this.xe_1).q()) {
|
|
8287
8308
|
this.ve_1 = 2;
|
|
8288
8309
|
return true;
|
|
8289
8310
|
} else {
|
|
@@ -8308,14 +8329,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8308
8329
|
step.d9(tmp$ret$0);
|
|
8309
8330
|
}
|
|
8310
8331
|
};
|
|
8311
|
-
protoOf(SequenceBuilderIterator).
|
|
8332
|
+
protoOf(SequenceBuilderIterator).r = function () {
|
|
8312
8333
|
switch (this.ve_1) {
|
|
8313
8334
|
case 0:
|
|
8314
8335
|
case 1:
|
|
8315
8336
|
return nextNotReady(this);
|
|
8316
8337
|
case 2:
|
|
8317
8338
|
this.ve_1 = 1;
|
|
8318
|
-
return ensureNotNull(this.xe_1).
|
|
8339
|
+
return ensureNotNull(this.xe_1).r();
|
|
8319
8340
|
case 3:
|
|
8320
8341
|
this.ve_1 = 0;
|
|
8321
8342
|
var tmp = this.we_1;
|
|
@@ -8334,7 +8355,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8334
8355
|
return get_COROUTINE_SUSPENDED();
|
|
8335
8356
|
};
|
|
8336
8357
|
protoOf(SequenceBuilderIterator).te = function (iterator, $completion) {
|
|
8337
|
-
if (!iterator.
|
|
8358
|
+
if (!iterator.q())
|
|
8338
8359
|
return Unit_instance;
|
|
8339
8360
|
this.xe_1 = iterator;
|
|
8340
8361
|
this.ve_1 = 2;
|
|
@@ -8359,7 +8380,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8359
8380
|
function sequence$$inlined$Sequence$1($block) {
|
|
8360
8381
|
this.af_1 = $block;
|
|
8361
8382
|
}
|
|
8362
|
-
protoOf(sequence$$inlined$Sequence$1).
|
|
8383
|
+
protoOf(sequence$$inlined$Sequence$1).p = function () {
|
|
8363
8384
|
// Inline function 'kotlin.sequences.sequence.<anonymous>' call
|
|
8364
8385
|
return iterator(this.af_1);
|
|
8365
8386
|
};
|
|
@@ -8377,24 +8398,24 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8377
8398
|
}
|
|
8378
8399
|
function TransformingSequence$iterator$1(this$0) {
|
|
8379
8400
|
this.cf_1 = this$0;
|
|
8380
|
-
this.bf_1 = this$0.df_1.
|
|
8401
|
+
this.bf_1 = this$0.df_1.p();
|
|
8381
8402
|
}
|
|
8382
|
-
protoOf(TransformingSequence$iterator$1).
|
|
8383
|
-
return this.cf_1.ef_1(this.bf_1.
|
|
8403
|
+
protoOf(TransformingSequence$iterator$1).r = function () {
|
|
8404
|
+
return this.cf_1.ef_1(this.bf_1.r());
|
|
8384
8405
|
};
|
|
8385
|
-
protoOf(TransformingSequence$iterator$1).
|
|
8386
|
-
return this.bf_1.
|
|
8406
|
+
protoOf(TransformingSequence$iterator$1).q = function () {
|
|
8407
|
+
return this.bf_1.q();
|
|
8387
8408
|
};
|
|
8388
8409
|
function TransformingSequence(sequence, transformer) {
|
|
8389
8410
|
this.df_1 = sequence;
|
|
8390
8411
|
this.ef_1 = transformer;
|
|
8391
8412
|
}
|
|
8392
|
-
protoOf(TransformingSequence).
|
|
8413
|
+
protoOf(TransformingSequence).p = function () {
|
|
8393
8414
|
return new TransformingSequence$iterator$1(this);
|
|
8394
8415
|
};
|
|
8395
8416
|
function calcNext($this) {
|
|
8396
|
-
while ($this.ff_1.
|
|
8397
|
-
var item = $this.ff_1.
|
|
8417
|
+
while ($this.ff_1.q()) {
|
|
8418
|
+
var item = $this.ff_1.r();
|
|
8398
8419
|
if ($this.if_1.lf_1(item) === $this.if_1.kf_1) {
|
|
8399
8420
|
$this.hf_1 = item;
|
|
8400
8421
|
$this.gf_1 = 1;
|
|
@@ -8405,11 +8426,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8405
8426
|
}
|
|
8406
8427
|
function FilteringSequence$iterator$1(this$0) {
|
|
8407
8428
|
this.if_1 = this$0;
|
|
8408
|
-
this.ff_1 = this$0.jf_1.
|
|
8429
|
+
this.ff_1 = this$0.jf_1.p();
|
|
8409
8430
|
this.gf_1 = -1;
|
|
8410
8431
|
this.hf_1 = null;
|
|
8411
8432
|
}
|
|
8412
|
-
protoOf(FilteringSequence$iterator$1).
|
|
8433
|
+
protoOf(FilteringSequence$iterator$1).r = function () {
|
|
8413
8434
|
if (this.gf_1 === -1) {
|
|
8414
8435
|
calcNext(this);
|
|
8415
8436
|
}
|
|
@@ -8420,7 +8441,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8420
8441
|
this.gf_1 = -1;
|
|
8421
8442
|
return (result == null ? true : !(result == null)) ? result : THROW_CCE();
|
|
8422
8443
|
};
|
|
8423
|
-
protoOf(FilteringSequence$iterator$1).
|
|
8444
|
+
protoOf(FilteringSequence$iterator$1).q = function () {
|
|
8424
8445
|
if (this.gf_1 === -1) {
|
|
8425
8446
|
calcNext(this);
|
|
8426
8447
|
}
|
|
@@ -8432,7 +8453,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8432
8453
|
this.kf_1 = sendWhen;
|
|
8433
8454
|
this.lf_1 = predicate;
|
|
8434
8455
|
}
|
|
8435
|
-
protoOf(FilteringSequence).
|
|
8456
|
+
protoOf(FilteringSequence).p = function () {
|
|
8436
8457
|
return new FilteringSequence$iterator$1(this);
|
|
8437
8458
|
};
|
|
8438
8459
|
function generateSequence_1(seedFunction, nextFunction) {
|
|
@@ -8440,7 +8461,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8440
8461
|
}
|
|
8441
8462
|
function EmptySequence() {
|
|
8442
8463
|
}
|
|
8443
|
-
protoOf(EmptySequence).
|
|
8464
|
+
protoOf(EmptySequence).p = function () {
|
|
8444
8465
|
return EmptyIterator_instance;
|
|
8445
8466
|
};
|
|
8446
8467
|
var EmptySequence_instance;
|
|
@@ -8456,7 +8477,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8456
8477
|
this.mf_1 = null;
|
|
8457
8478
|
this.nf_1 = -2;
|
|
8458
8479
|
}
|
|
8459
|
-
protoOf(GeneratorSequence$iterator$1).
|
|
8480
|
+
protoOf(GeneratorSequence$iterator$1).r = function () {
|
|
8460
8481
|
if (this.nf_1 < 0) {
|
|
8461
8482
|
calcNext_0(this);
|
|
8462
8483
|
}
|
|
@@ -8467,7 +8488,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8467
8488
|
this.nf_1 = -1;
|
|
8468
8489
|
return result;
|
|
8469
8490
|
};
|
|
8470
|
-
protoOf(GeneratorSequence$iterator$1).
|
|
8491
|
+
protoOf(GeneratorSequence$iterator$1).q = function () {
|
|
8471
8492
|
if (this.nf_1 < 0) {
|
|
8472
8493
|
calcNext_0(this);
|
|
8473
8494
|
}
|
|
@@ -8477,7 +8498,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8477
8498
|
this.pf_1 = getInitialValue;
|
|
8478
8499
|
this.qf_1 = getNextValue;
|
|
8479
8500
|
}
|
|
8480
|
-
protoOf(GeneratorSequence).
|
|
8501
|
+
protoOf(GeneratorSequence).p = function () {
|
|
8481
8502
|
return new GeneratorSequence$iterator$1(this);
|
|
8482
8503
|
};
|
|
8483
8504
|
function constrainOnce(_this__u8e3s4) {
|
|
@@ -8512,7 +8533,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8512
8533
|
protoOf(EmptySet).equals = function (other) {
|
|
8513
8534
|
var tmp;
|
|
8514
8535
|
if (!(other == null) ? isInterface(other, KtSet) : false) {
|
|
8515
|
-
tmp = other.
|
|
8536
|
+
tmp = other.m();
|
|
8516
8537
|
} else {
|
|
8517
8538
|
tmp = false;
|
|
8518
8539
|
}
|
|
@@ -8524,10 +8545,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8524
8545
|
protoOf(EmptySet).toString = function () {
|
|
8525
8546
|
return '[]';
|
|
8526
8547
|
};
|
|
8527
|
-
protoOf(EmptySet).
|
|
8548
|
+
protoOf(EmptySet).s = function () {
|
|
8528
8549
|
return 0;
|
|
8529
8550
|
};
|
|
8530
|
-
protoOf(EmptySet).
|
|
8551
|
+
protoOf(EmptySet).m = function () {
|
|
8531
8552
|
return true;
|
|
8532
8553
|
};
|
|
8533
8554
|
protoOf(EmptySet).ud = function (element) {
|
|
@@ -8545,12 +8566,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8545
8566
|
return this.ud(tmp);
|
|
8546
8567
|
};
|
|
8547
8568
|
protoOf(EmptySet).sf = function (elements) {
|
|
8548
|
-
return elements.
|
|
8569
|
+
return elements.m();
|
|
8549
8570
|
};
|
|
8550
8571
|
protoOf(EmptySet).t1 = function (elements) {
|
|
8551
8572
|
return this.sf(elements);
|
|
8552
8573
|
};
|
|
8553
|
-
protoOf(EmptySet).
|
|
8574
|
+
protoOf(EmptySet).p = function () {
|
|
8554
8575
|
return EmptyIterator_instance;
|
|
8555
8576
|
};
|
|
8556
8577
|
var EmptySet_instance;
|
|
@@ -8560,11 +8581,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8560
8581
|
return EmptySet_instance;
|
|
8561
8582
|
}
|
|
8562
8583
|
function optimizeReadOnlySet(_this__u8e3s4) {
|
|
8563
|
-
switch (_this__u8e3s4.
|
|
8584
|
+
switch (_this__u8e3s4.s()) {
|
|
8564
8585
|
case 0:
|
|
8565
8586
|
return emptySet();
|
|
8566
8587
|
case 1:
|
|
8567
|
-
return setOf(_this__u8e3s4.
|
|
8588
|
+
return setOf(_this__u8e3s4.p().r());
|
|
8568
8589
|
default:
|
|
8569
8590
|
return _this__u8e3s4;
|
|
8570
8591
|
}
|
|
@@ -8664,10 +8685,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8664
8685
|
AbstractList.call(this);
|
|
8665
8686
|
this.vf_1 = entries;
|
|
8666
8687
|
}
|
|
8667
|
-
protoOf(EnumEntriesList).
|
|
8688
|
+
protoOf(EnumEntriesList).s = function () {
|
|
8668
8689
|
return this.vf_1.length;
|
|
8669
8690
|
};
|
|
8670
|
-
protoOf(EnumEntriesList).
|
|
8691
|
+
protoOf(EnumEntriesList).t = function (index) {
|
|
8671
8692
|
Companion_instance_5.m4(index, this.vf_1.length);
|
|
8672
8693
|
return this.vf_1[index];
|
|
8673
8694
|
};
|
|
@@ -8726,29 +8747,29 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8726
8747
|
Companion_getInstance_8();
|
|
8727
8748
|
IntProgression.call(this, start, endInclusive, 1);
|
|
8728
8749
|
}
|
|
8729
|
-
protoOf(IntRange).
|
|
8750
|
+
protoOf(IntRange).n = function () {
|
|
8730
8751
|
return this.yf_1;
|
|
8731
8752
|
};
|
|
8732
|
-
protoOf(IntRange).
|
|
8753
|
+
protoOf(IntRange).o = function () {
|
|
8733
8754
|
return this.zf_1;
|
|
8734
8755
|
};
|
|
8735
8756
|
protoOf(IntRange).bg = function (value) {
|
|
8736
8757
|
return this.yf_1 <= value && value <= this.zf_1;
|
|
8737
8758
|
};
|
|
8738
|
-
protoOf(IntRange).
|
|
8759
|
+
protoOf(IntRange).m = function () {
|
|
8739
8760
|
return this.yf_1 > this.zf_1;
|
|
8740
8761
|
};
|
|
8741
8762
|
protoOf(IntRange).equals = function (other) {
|
|
8742
8763
|
var tmp;
|
|
8743
8764
|
if (other instanceof IntRange) {
|
|
8744
|
-
tmp = this.
|
|
8765
|
+
tmp = this.m() && other.m() || (this.yf_1 === other.yf_1 && this.zf_1 === other.zf_1);
|
|
8745
8766
|
} else {
|
|
8746
8767
|
tmp = false;
|
|
8747
8768
|
}
|
|
8748
8769
|
return tmp;
|
|
8749
8770
|
};
|
|
8750
8771
|
protoOf(IntRange).hashCode = function () {
|
|
8751
|
-
return this.
|
|
8772
|
+
return this.m() ? -1 : imul(31, this.yf_1) + this.zf_1 | 0;
|
|
8752
8773
|
};
|
|
8753
8774
|
protoOf(IntRange).toString = function () {
|
|
8754
8775
|
return '' + this.yf_1 + '..' + this.zf_1;
|
|
@@ -8760,7 +8781,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8760
8781
|
this.eg_1 = this.cg_1 > 0 ? first <= last : first >= last;
|
|
8761
8782
|
this.fg_1 = this.eg_1 ? first : this.dg_1;
|
|
8762
8783
|
}
|
|
8763
|
-
protoOf(IntProgressionIterator).
|
|
8784
|
+
protoOf(IntProgressionIterator).q = function () {
|
|
8764
8785
|
return this.eg_1;
|
|
8765
8786
|
};
|
|
8766
8787
|
protoOf(IntProgressionIterator).ie = function () {
|
|
@@ -8792,23 +8813,23 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
8792
8813
|
this.zf_1 = getProgressionLastElement(start, endInclusive, step);
|
|
8793
8814
|
this.ag_1 = step;
|
|
8794
8815
|
}
|
|
8795
|
-
protoOf(IntProgression).
|
|
8816
|
+
protoOf(IntProgression).p = function () {
|
|
8796
8817
|
return new IntProgressionIterator(this.yf_1, this.zf_1, this.ag_1);
|
|
8797
8818
|
};
|
|
8798
|
-
protoOf(IntProgression).
|
|
8819
|
+
protoOf(IntProgression).m = function () {
|
|
8799
8820
|
return this.ag_1 > 0 ? this.yf_1 > this.zf_1 : this.yf_1 < this.zf_1;
|
|
8800
8821
|
};
|
|
8801
8822
|
protoOf(IntProgression).equals = function (other) {
|
|
8802
8823
|
var tmp;
|
|
8803
8824
|
if (other instanceof IntProgression) {
|
|
8804
|
-
tmp = this.
|
|
8825
|
+
tmp = this.m() && other.m() || (this.yf_1 === other.yf_1 && this.zf_1 === other.zf_1 && this.ag_1 === other.ag_1);
|
|
8805
8826
|
} else {
|
|
8806
8827
|
tmp = false;
|
|
8807
8828
|
}
|
|
8808
8829
|
return tmp;
|
|
8809
8830
|
};
|
|
8810
8831
|
protoOf(IntProgression).hashCode = function () {
|
|
8811
|
-
return this.
|
|
8832
|
+
return this.m() ? -1 : imul(31, imul(31, this.yf_1) + this.zf_1 | 0) + this.ag_1 | 0;
|
|
8812
8833
|
};
|
|
8813
8834
|
protoOf(IntProgression).toString = function () {
|
|
8814
8835
|
return this.ag_1 > 0 ? '' + this.yf_1 + '..' + this.zf_1 + ' step ' + this.ag_1 : '' + this.yf_1 + ' downTo ' + this.zf_1 + ' step ' + (-this.ag_1 | 0);
|
|
@@ -9069,7 +9090,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9069
9090
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
9070
9091
|
}
|
|
9071
9092
|
var lines_0 = lines(_this__u8e3s4);
|
|
9072
|
-
var tmp1 = _this__u8e3s4.length + imul(newIndent.length, lines_0.
|
|
9093
|
+
var tmp1 = _this__u8e3s4.length + imul(newIndent.length, lines_0.s()) | 0;
|
|
9073
9094
|
// Inline function 'kotlin.text.reindent' call
|
|
9074
9095
|
var indentAddFunction = getIndentFunction(newIndent);
|
|
9075
9096
|
var lastIndex = get_lastIndex_1(lines_0);
|
|
@@ -9078,9 +9099,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9078
9099
|
var destination = ArrayList_init_$Create$();
|
|
9079
9100
|
// Inline function 'kotlin.collections.forEachIndexed' call
|
|
9080
9101
|
var index = 0;
|
|
9081
|
-
var _iterator__ex2g4s = lines_0.
|
|
9082
|
-
while (_iterator__ex2g4s.
|
|
9083
|
-
var item = _iterator__ex2g4s.
|
|
9102
|
+
var _iterator__ex2g4s = lines_0.p();
|
|
9103
|
+
while (_iterator__ex2g4s.q()) {
|
|
9104
|
+
var item = _iterator__ex2g4s.r();
|
|
9084
9105
|
var _unary__edvuaz = index;
|
|
9085
9106
|
index = _unary__edvuaz + 1 | 0;
|
|
9086
9107
|
// Inline function 'kotlin.collections.mapIndexedNotNullTo.<anonymous>' call
|
|
@@ -9163,9 +9184,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9163
9184
|
// Inline function 'kotlin.collections.filter' call
|
|
9164
9185
|
// Inline function 'kotlin.collections.filterTo' call
|
|
9165
9186
|
var destination = ArrayList_init_$Create$();
|
|
9166
|
-
var _iterator__ex2g4s = lines_0.
|
|
9167
|
-
while (_iterator__ex2g4s.
|
|
9168
|
-
var element = _iterator__ex2g4s.
|
|
9187
|
+
var _iterator__ex2g4s = lines_0.p();
|
|
9188
|
+
while (_iterator__ex2g4s.q()) {
|
|
9189
|
+
var element = _iterator__ex2g4s.r();
|
|
9169
9190
|
// Inline function 'kotlin.text.replaceIndent.stub_for_inlining' call
|
|
9170
9191
|
// Inline function 'kotlin.text.isNotBlank' call
|
|
9171
9192
|
if (!isBlank(element)) {
|
|
@@ -9175,16 +9196,16 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9175
9196
|
// Inline function 'kotlin.collections.map' call
|
|
9176
9197
|
// Inline function 'kotlin.collections.mapTo' call
|
|
9177
9198
|
var destination_0 = ArrayList_init_$Create$_0(collectionSizeOrDefault(destination, 10));
|
|
9178
|
-
var _iterator__ex2g4s_0 = destination.
|
|
9179
|
-
while (_iterator__ex2g4s_0.
|
|
9180
|
-
var item = _iterator__ex2g4s_0.
|
|
9199
|
+
var _iterator__ex2g4s_0 = destination.p();
|
|
9200
|
+
while (_iterator__ex2g4s_0.q()) {
|
|
9201
|
+
var item = _iterator__ex2g4s_0.r();
|
|
9181
9202
|
// Inline function 'kotlin.text.replaceIndent.stub_for_inlining' call
|
|
9182
9203
|
var tmp$ret$4 = indentWidth(item);
|
|
9183
9204
|
destination_0.e(tmp$ret$4);
|
|
9184
9205
|
}
|
|
9185
9206
|
var tmp0_elvis_lhs = minOrNull(destination_0);
|
|
9186
9207
|
var minCommonIndent = tmp0_elvis_lhs == null ? 0 : tmp0_elvis_lhs;
|
|
9187
|
-
var tmp1 = _this__u8e3s4.length + imul(newIndent.length, lines_0.
|
|
9208
|
+
var tmp1 = _this__u8e3s4.length + imul(newIndent.length, lines_0.s()) | 0;
|
|
9188
9209
|
// Inline function 'kotlin.text.reindent' call
|
|
9189
9210
|
var indentAddFunction = getIndentFunction(newIndent);
|
|
9190
9211
|
var lastIndex = get_lastIndex_1(lines_0);
|
|
@@ -9193,9 +9214,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9193
9214
|
var destination_1 = ArrayList_init_$Create$();
|
|
9194
9215
|
// Inline function 'kotlin.collections.forEachIndexed' call
|
|
9195
9216
|
var index = 0;
|
|
9196
|
-
var _iterator__ex2g4s_1 = lines_0.
|
|
9197
|
-
while (_iterator__ex2g4s_1.
|
|
9198
|
-
var item_0 = _iterator__ex2g4s_1.
|
|
9217
|
+
var _iterator__ex2g4s_1 = lines_0.p();
|
|
9218
|
+
while (_iterator__ex2g4s_1.q()) {
|
|
9219
|
+
var item_0 = _iterator__ex2g4s_1.r();
|
|
9199
9220
|
var _unary__edvuaz = index;
|
|
9200
9221
|
index = _unary__edvuaz + 1 | 0;
|
|
9201
9222
|
// Inline function 'kotlin.collections.mapIndexedNotNullTo.<anonymous>' call
|
|
@@ -9366,6 +9387,33 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9366
9387
|
}
|
|
9367
9388
|
return _this__u8e3s4;
|
|
9368
9389
|
}
|
|
9390
|
+
function contains_5(_this__u8e3s4, char, ignoreCase) {
|
|
9391
|
+
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9392
|
+
return indexOf_5(_this__u8e3s4, char, VOID, ignoreCase) >= 0;
|
|
9393
|
+
}
|
|
9394
|
+
function indexOf_5(_this__u8e3s4, char, startIndex, ignoreCase) {
|
|
9395
|
+
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
9396
|
+
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9397
|
+
var tmp;
|
|
9398
|
+
var tmp_0;
|
|
9399
|
+
if (ignoreCase) {
|
|
9400
|
+
tmp_0 = true;
|
|
9401
|
+
} else {
|
|
9402
|
+
tmp_0 = !(typeof _this__u8e3s4 === 'string');
|
|
9403
|
+
}
|
|
9404
|
+
if (tmp_0) {
|
|
9405
|
+
// Inline function 'kotlin.charArrayOf' call
|
|
9406
|
+
var tmp$ret$0 = charArrayOf([char]);
|
|
9407
|
+
tmp = indexOfAny(_this__u8e3s4, tmp$ret$0, startIndex, ignoreCase);
|
|
9408
|
+
} else {
|
|
9409
|
+
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9410
|
+
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9411
|
+
var str = toString(char);
|
|
9412
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
9413
|
+
tmp = _this__u8e3s4.indexOf(str, startIndex);
|
|
9414
|
+
}
|
|
9415
|
+
return tmp;
|
|
9416
|
+
}
|
|
9369
9417
|
function commonPrefixWith(_this__u8e3s4, other, ignoreCase) {
|
|
9370
9418
|
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9371
9419
|
var tmp0 = charSequenceLength(_this__u8e3s4);
|
|
@@ -9411,9 +9459,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9411
9459
|
var this_0 = asIterable(rangesDelimitedBy(_this__u8e3s4, delimiters, VOID, ignoreCase, limit));
|
|
9412
9460
|
// Inline function 'kotlin.collections.mapTo' call
|
|
9413
9461
|
var destination = ArrayList_init_$Create$_0(collectionSizeOrDefault(this_0, 10));
|
|
9414
|
-
var _iterator__ex2g4s = this_0.
|
|
9415
|
-
while (_iterator__ex2g4s.
|
|
9416
|
-
var item = _iterator__ex2g4s.
|
|
9462
|
+
var _iterator__ex2g4s = this_0.p();
|
|
9463
|
+
while (_iterator__ex2g4s.q()) {
|
|
9464
|
+
var item = _iterator__ex2g4s.r();
|
|
9417
9465
|
// Inline function 'kotlin.text.split.<anonymous>' call
|
|
9418
9466
|
var tmp$ret$1 = substring(_this__u8e3s4, item);
|
|
9419
9467
|
destination.e(tmp$ret$1);
|
|
@@ -9438,10 +9486,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9438
9486
|
}
|
|
9439
9487
|
return tmp$ret$1;
|
|
9440
9488
|
}
|
|
9441
|
-
function contains_5(_this__u8e3s4, char, ignoreCase) {
|
|
9442
|
-
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9443
|
-
return indexOf_5(_this__u8e3s4, char, VOID, ignoreCase) >= 0;
|
|
9444
|
-
}
|
|
9445
9489
|
function contains_6(_this__u8e3s4, other, ignoreCase) {
|
|
9446
9490
|
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9447
9491
|
var tmp;
|
|
@@ -9456,29 +9500,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9456
9500
|
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9457
9501
|
return charSequenceLength(_this__u8e3s4) > 0 && equals_0(charSequenceGet(_this__u8e3s4, 0), char, ignoreCase);
|
|
9458
9502
|
}
|
|
9459
|
-
function indexOf_5(_this__u8e3s4, char, startIndex, ignoreCase) {
|
|
9460
|
-
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
9461
|
-
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9462
|
-
var tmp;
|
|
9463
|
-
var tmp_0;
|
|
9464
|
-
if (ignoreCase) {
|
|
9465
|
-
tmp_0 = true;
|
|
9466
|
-
} else {
|
|
9467
|
-
tmp_0 = !(typeof _this__u8e3s4 === 'string');
|
|
9468
|
-
}
|
|
9469
|
-
if (tmp_0) {
|
|
9470
|
-
// Inline function 'kotlin.charArrayOf' call
|
|
9471
|
-
var tmp$ret$0 = charArrayOf([char]);
|
|
9472
|
-
tmp = indexOfAny(_this__u8e3s4, tmp$ret$0, startIndex, ignoreCase);
|
|
9473
|
-
} else {
|
|
9474
|
-
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9475
|
-
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9476
|
-
var str = toString(char);
|
|
9477
|
-
// Inline function 'kotlin.js.asDynamic' call
|
|
9478
|
-
tmp = _this__u8e3s4.indexOf(str, startIndex);
|
|
9479
|
-
}
|
|
9480
|
-
return tmp;
|
|
9481
|
-
}
|
|
9482
9503
|
function padStart_0(_this__u8e3s4, length, padChar) {
|
|
9483
9504
|
padChar = padChar === VOID ? _Char___init__impl__6a9atx(32) : padChar;
|
|
9484
9505
|
if (length < 0)
|
|
@@ -9533,6 +9554,52 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9533
9554
|
return regionMatchesImpl(_this__u8e3s4, 0, prefix, 0, charSequenceLength(prefix), ignoreCase);
|
|
9534
9555
|
}
|
|
9535
9556
|
}
|
|
9557
|
+
function indexOfAny(_this__u8e3s4, chars, startIndex, ignoreCase) {
|
|
9558
|
+
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
9559
|
+
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9560
|
+
var tmp;
|
|
9561
|
+
if (!ignoreCase && chars.length === 1) {
|
|
9562
|
+
tmp = typeof _this__u8e3s4 === 'string';
|
|
9563
|
+
} else {
|
|
9564
|
+
tmp = false;
|
|
9565
|
+
}
|
|
9566
|
+
if (tmp) {
|
|
9567
|
+
var char = single(chars);
|
|
9568
|
+
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9569
|
+
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9570
|
+
var str = toString(char);
|
|
9571
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
9572
|
+
return _this__u8e3s4.indexOf(str, startIndex);
|
|
9573
|
+
}
|
|
9574
|
+
var inductionVariable = coerceAtLeast(startIndex, 0);
|
|
9575
|
+
var last = get_lastIndex_2(_this__u8e3s4);
|
|
9576
|
+
if (inductionVariable <= last)
|
|
9577
|
+
do {
|
|
9578
|
+
var index = inductionVariable;
|
|
9579
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
9580
|
+
var charAtIndex = charSequenceGet(_this__u8e3s4, index);
|
|
9581
|
+
var tmp$ret$4;
|
|
9582
|
+
$l$block: {
|
|
9583
|
+
// Inline function 'kotlin.collections.any' call
|
|
9584
|
+
var inductionVariable_0 = 0;
|
|
9585
|
+
var last_0 = chars.length;
|
|
9586
|
+
while (inductionVariable_0 < last_0) {
|
|
9587
|
+
var element = chars[inductionVariable_0];
|
|
9588
|
+
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
9589
|
+
// Inline function 'kotlin.text.indexOfAny.<anonymous>' call
|
|
9590
|
+
if (equals_0(element, charAtIndex, ignoreCase)) {
|
|
9591
|
+
tmp$ret$4 = true;
|
|
9592
|
+
break $l$block;
|
|
9593
|
+
}
|
|
9594
|
+
}
|
|
9595
|
+
tmp$ret$4 = false;
|
|
9596
|
+
}
|
|
9597
|
+
if (tmp$ret$4)
|
|
9598
|
+
return index;
|
|
9599
|
+
}
|
|
9600
|
+
while (!(index === last));
|
|
9601
|
+
return -1;
|
|
9602
|
+
}
|
|
9536
9603
|
function hasSurrogatePairAt(_this__u8e3s4, index) {
|
|
9537
9604
|
return (0 <= index ? index <= (charSequenceLength(_this__u8e3s4) - 2 | 0) : false) && isHighSurrogate(charSequenceGet(_this__u8e3s4, index)) && isLowSurrogate(charSequenceGet(_this__u8e3s4, index + 1 | 0));
|
|
9538
9605
|
}
|
|
@@ -9552,7 +9619,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9552
9619
|
this.og_1 = 0;
|
|
9553
9620
|
this.pg_1 = 0;
|
|
9554
9621
|
}
|
|
9555
|
-
protoOf(LinesIterator).
|
|
9622
|
+
protoOf(LinesIterator).q = function () {
|
|
9556
9623
|
if (!(this.mg_1 === 0)) {
|
|
9557
9624
|
return this.mg_1 === 1;
|
|
9558
9625
|
}
|
|
@@ -9581,8 +9648,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9581
9648
|
this.og_1 = _delimiterStartIndex;
|
|
9582
9649
|
return true;
|
|
9583
9650
|
};
|
|
9584
|
-
protoOf(LinesIterator).
|
|
9585
|
-
if (!this.
|
|
9651
|
+
protoOf(LinesIterator).r = function () {
|
|
9652
|
+
if (!this.q()) {
|
|
9586
9653
|
throw NoSuchElementException_init_$Create$();
|
|
9587
9654
|
}
|
|
9588
9655
|
this.mg_1 = 0;
|
|
@@ -9629,7 +9696,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9629
9696
|
var tmp$ret$0 = toString_1(charSequenceSubSequence(_this__u8e3s4, tmp1, endIndex));
|
|
9630
9697
|
result.e(tmp$ret$0);
|
|
9631
9698
|
currentOffset = nextIndex + delimiter.length | 0;
|
|
9632
|
-
if (isLimited && result.
|
|
9699
|
+
if (isLimited && result.s() === (limit - 1 | 0))
|
|
9633
9700
|
break $l$loop;
|
|
9634
9701
|
nextIndex = indexOf_6(_this__u8e3s4, delimiter, currentOffset, ignoreCase);
|
|
9635
9702
|
}
|
|
@@ -9642,7 +9709,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9642
9709
|
return result;
|
|
9643
9710
|
}
|
|
9644
9711
|
function substring(_this__u8e3s4, range) {
|
|
9645
|
-
return toString_1(charSequenceSubSequence(_this__u8e3s4, range.
|
|
9712
|
+
return toString_1(charSequenceSubSequence(_this__u8e3s4, range.n(), range.o() + 1 | 0));
|
|
9646
9713
|
}
|
|
9647
9714
|
function rangesDelimitedBy(_this__u8e3s4, delimiters, startIndex, ignoreCase, limit) {
|
|
9648
9715
|
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
@@ -9707,52 +9774,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9707
9774
|
}
|
|
9708
9775
|
return -1;
|
|
9709
9776
|
}
|
|
9710
|
-
function indexOfAny(_this__u8e3s4, chars, startIndex, ignoreCase) {
|
|
9711
|
-
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
9712
|
-
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9713
|
-
var tmp;
|
|
9714
|
-
if (!ignoreCase && chars.length === 1) {
|
|
9715
|
-
tmp = typeof _this__u8e3s4 === 'string';
|
|
9716
|
-
} else {
|
|
9717
|
-
tmp = false;
|
|
9718
|
-
}
|
|
9719
|
-
if (tmp) {
|
|
9720
|
-
var char = single(chars);
|
|
9721
|
-
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9722
|
-
// Inline function 'kotlin.text.nativeIndexOf' call
|
|
9723
|
-
var str = toString(char);
|
|
9724
|
-
// Inline function 'kotlin.js.asDynamic' call
|
|
9725
|
-
return _this__u8e3s4.indexOf(str, startIndex);
|
|
9726
|
-
}
|
|
9727
|
-
var inductionVariable = coerceAtLeast(startIndex, 0);
|
|
9728
|
-
var last = get_lastIndex_2(_this__u8e3s4);
|
|
9729
|
-
if (inductionVariable <= last)
|
|
9730
|
-
do {
|
|
9731
|
-
var index = inductionVariable;
|
|
9732
|
-
inductionVariable = inductionVariable + 1 | 0;
|
|
9733
|
-
var charAtIndex = charSequenceGet(_this__u8e3s4, index);
|
|
9734
|
-
var tmp$ret$4;
|
|
9735
|
-
$l$block: {
|
|
9736
|
-
// Inline function 'kotlin.collections.any' call
|
|
9737
|
-
var inductionVariable_0 = 0;
|
|
9738
|
-
var last_0 = chars.length;
|
|
9739
|
-
while (inductionVariable_0 < last_0) {
|
|
9740
|
-
var element = chars[inductionVariable_0];
|
|
9741
|
-
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
9742
|
-
// Inline function 'kotlin.text.indexOfAny.<anonymous>' call
|
|
9743
|
-
if (equals_0(element, charAtIndex, ignoreCase)) {
|
|
9744
|
-
tmp$ret$4 = true;
|
|
9745
|
-
break $l$block;
|
|
9746
|
-
}
|
|
9747
|
-
}
|
|
9748
|
-
tmp$ret$4 = false;
|
|
9749
|
-
}
|
|
9750
|
-
if (tmp$ret$4)
|
|
9751
|
-
return index;
|
|
9752
|
-
}
|
|
9753
|
-
while (!(index === last));
|
|
9754
|
-
return -1;
|
|
9755
|
-
}
|
|
9756
9777
|
function requireNonNegativeLimit(limit) {
|
|
9757
9778
|
var tmp;
|
|
9758
9779
|
if (!(limit >= 0)) {
|
|
@@ -9807,7 +9828,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9807
9828
|
this.tg_1 = null;
|
|
9808
9829
|
this.ug_1 = 0;
|
|
9809
9830
|
}
|
|
9810
|
-
protoOf(DelimitedRangesSequence$iterator$1).
|
|
9831
|
+
protoOf(DelimitedRangesSequence$iterator$1).r = function () {
|
|
9811
9832
|
if (this.qg_1 === -1) {
|
|
9812
9833
|
calcNext_1(this);
|
|
9813
9834
|
}
|
|
@@ -9819,7 +9840,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9819
9840
|
this.qg_1 = -1;
|
|
9820
9841
|
return result;
|
|
9821
9842
|
};
|
|
9822
|
-
protoOf(DelimitedRangesSequence$iterator$1).
|
|
9843
|
+
protoOf(DelimitedRangesSequence$iterator$1).q = function () {
|
|
9823
9844
|
if (this.qg_1 === -1) {
|
|
9824
9845
|
calcNext_1(this);
|
|
9825
9846
|
}
|
|
@@ -9831,11 +9852,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9831
9852
|
this.yg_1 = limit;
|
|
9832
9853
|
this.zg_1 = getNextMatch;
|
|
9833
9854
|
}
|
|
9834
|
-
protoOf(DelimitedRangesSequence).
|
|
9855
|
+
protoOf(DelimitedRangesSequence).p = function () {
|
|
9835
9856
|
return new DelimitedRangesSequence$iterator$1(this);
|
|
9836
9857
|
};
|
|
9837
9858
|
function findAnyOf(_this__u8e3s4, strings, startIndex, ignoreCase, last) {
|
|
9838
|
-
if (!ignoreCase && strings.
|
|
9859
|
+
if (!ignoreCase && strings.s() === 1) {
|
|
9839
9860
|
var string = single_1(strings);
|
|
9840
9861
|
var index = !last ? indexOf_6(_this__u8e3s4, string, startIndex) : lastIndexOf(_this__u8e3s4, string, startIndex);
|
|
9841
9862
|
return index < 0 ? null : to(index, string);
|
|
@@ -9852,9 +9873,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9852
9873
|
var tmp$ret$1;
|
|
9853
9874
|
$l$block: {
|
|
9854
9875
|
// Inline function 'kotlin.collections.firstOrNull' call
|
|
9855
|
-
var _iterator__ex2g4s = strings.
|
|
9856
|
-
while (_iterator__ex2g4s.
|
|
9857
|
-
var element = _iterator__ex2g4s.
|
|
9876
|
+
var _iterator__ex2g4s = strings.p();
|
|
9877
|
+
while (_iterator__ex2g4s.q()) {
|
|
9878
|
+
var element = _iterator__ex2g4s.r();
|
|
9858
9879
|
// Inline function 'kotlin.text.findAnyOf.<anonymous>' call
|
|
9859
9880
|
if (regionMatches(element, 0, _this__u8e3s4, index_0, element.length, ignoreCase)) {
|
|
9860
9881
|
tmp$ret$1 = element;
|
|
@@ -9879,9 +9900,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9879
9900
|
var tmp$ret$3;
|
|
9880
9901
|
$l$block_0: {
|
|
9881
9902
|
// Inline function 'kotlin.collections.firstOrNull' call
|
|
9882
|
-
var _iterator__ex2g4s_0 = strings.
|
|
9883
|
-
while (_iterator__ex2g4s_0.
|
|
9884
|
-
var element_0 = _iterator__ex2g4s_0.
|
|
9903
|
+
var _iterator__ex2g4s_0 = strings.p();
|
|
9904
|
+
while (_iterator__ex2g4s_0.q()) {
|
|
9905
|
+
var element_0 = _iterator__ex2g4s_0.r();
|
|
9885
9906
|
// Inline function 'kotlin.text.findAnyOf.<anonymous>' call
|
|
9886
9907
|
if (regionMatchesImpl(element_0, 0, _this__u8e3s4, index_1, element_0.length, ignoreCase)) {
|
|
9887
9908
|
tmp$ret$3 = element_0;
|
|
@@ -9921,9 +9942,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9921
9942
|
return toList_2(lineSequence(_this__u8e3s4));
|
|
9922
9943
|
}
|
|
9923
9944
|
function substring_0(_this__u8e3s4, range) {
|
|
9924
|
-
var tmp1 = range.
|
|
9945
|
+
var tmp1 = range.n();
|
|
9925
9946
|
// Inline function 'kotlin.text.substring' call
|
|
9926
|
-
var endIndex = range.
|
|
9947
|
+
var endIndex = range.o() + 1 | 0;
|
|
9927
9948
|
// Inline function 'kotlin.js.asDynamic' call
|
|
9928
9949
|
return _this__u8e3s4.substring(tmp1, endIndex);
|
|
9929
9950
|
}
|
|
@@ -9991,7 +10012,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9991
10012
|
function lineSequence$$inlined$Sequence$1($this_lineSequence) {
|
|
9992
10013
|
this.ah_1 = $this_lineSequence;
|
|
9993
10014
|
}
|
|
9994
|
-
protoOf(lineSequence$$inlined$Sequence$1).
|
|
10015
|
+
protoOf(lineSequence$$inlined$Sequence$1).p = function () {
|
|
9995
10016
|
// Inline function 'kotlin.text.lineSequence.<anonymous>' call
|
|
9996
10017
|
return new LinesIterator(this.ah_1);
|
|
9997
10018
|
};
|
|
@@ -10747,7 +10768,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10747
10768
|
this.ci_1 = array;
|
|
10748
10769
|
this.di_1 = 0;
|
|
10749
10770
|
}
|
|
10750
|
-
protoOf(Iterator).
|
|
10771
|
+
protoOf(Iterator).q = function () {
|
|
10751
10772
|
return this.di_1 < this.ci_1.length;
|
|
10752
10773
|
};
|
|
10753
10774
|
protoOf(Iterator).ei = function () {
|
|
@@ -10763,7 +10784,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10763
10784
|
}
|
|
10764
10785
|
return tmp;
|
|
10765
10786
|
};
|
|
10766
|
-
protoOf(Iterator).
|
|
10787
|
+
protoOf(Iterator).r = function () {
|
|
10767
10788
|
return new UByte(this.ei());
|
|
10768
10789
|
};
|
|
10769
10790
|
function UByteArray__contains_impl_njh19q($this, element) {
|
|
@@ -10797,10 +10818,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10797
10818
|
function UByteArray(storage) {
|
|
10798
10819
|
this.fi_1 = storage;
|
|
10799
10820
|
}
|
|
10800
|
-
protoOf(UByteArray).
|
|
10821
|
+
protoOf(UByteArray).s = function () {
|
|
10801
10822
|
return _UByteArray___get_size__impl__h6pkdv(this.fi_1);
|
|
10802
10823
|
};
|
|
10803
|
-
protoOf(UByteArray).
|
|
10824
|
+
protoOf(UByteArray).p = function () {
|
|
10804
10825
|
return UByteArray__iterator_impl_509y1p(this.fi_1);
|
|
10805
10826
|
};
|
|
10806
10827
|
protoOf(UByteArray).gi = function (element) {
|
|
@@ -10809,7 +10830,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10809
10830
|
protoOf(UByteArray).d1 = function (element) {
|
|
10810
10831
|
return UByteArray__contains_impl_njh19q_0(this, element);
|
|
10811
10832
|
};
|
|
10812
|
-
protoOf(UByteArray).
|
|
10833
|
+
protoOf(UByteArray).m = function () {
|
|
10813
10834
|
return UByteArray__isEmpty_impl_nbfqsa(this.fi_1);
|
|
10814
10835
|
};
|
|
10815
10836
|
protoOf(UByteArray).toString = function () {
|
|
@@ -10899,7 +10920,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10899
10920
|
this.ni_1 = array;
|
|
10900
10921
|
this.oi_1 = 0;
|
|
10901
10922
|
}
|
|
10902
|
-
protoOf(Iterator_0).
|
|
10923
|
+
protoOf(Iterator_0).q = function () {
|
|
10903
10924
|
return this.oi_1 < this.ni_1.length;
|
|
10904
10925
|
};
|
|
10905
10926
|
protoOf(Iterator_0).pi = function () {
|
|
@@ -10915,7 +10936,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10915
10936
|
}
|
|
10916
10937
|
return tmp;
|
|
10917
10938
|
};
|
|
10918
|
-
protoOf(Iterator_0).
|
|
10939
|
+
protoOf(Iterator_0).r = function () {
|
|
10919
10940
|
return new UInt(this.pi());
|
|
10920
10941
|
};
|
|
10921
10942
|
function UIntArray__contains_impl_b16rzj($this, element) {
|
|
@@ -10949,10 +10970,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10949
10970
|
function UIntArray(storage) {
|
|
10950
10971
|
this.qi_1 = storage;
|
|
10951
10972
|
}
|
|
10952
|
-
protoOf(UIntArray).
|
|
10973
|
+
protoOf(UIntArray).s = function () {
|
|
10953
10974
|
return _UIntArray___get_size__impl__r6l8ci(this.qi_1);
|
|
10954
10975
|
};
|
|
10955
|
-
protoOf(UIntArray).
|
|
10976
|
+
protoOf(UIntArray).p = function () {
|
|
10956
10977
|
return UIntArray__iterator_impl_tkdv7k(this.qi_1);
|
|
10957
10978
|
};
|
|
10958
10979
|
protoOf(UIntArray).ri = function (element) {
|
|
@@ -10961,7 +10982,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
10961
10982
|
protoOf(UIntArray).d1 = function (element) {
|
|
10962
10983
|
return UIntArray__contains_impl_b16rzj_0(this, element);
|
|
10963
10984
|
};
|
|
10964
|
-
protoOf(UIntArray).
|
|
10985
|
+
protoOf(UIntArray).m = function () {
|
|
10965
10986
|
return UIntArray__isEmpty_impl_vd8j4n(this.qi_1);
|
|
10966
10987
|
};
|
|
10967
10988
|
protoOf(UIntArray).toString = function () {
|
|
@@ -11051,7 +11072,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11051
11072
|
this.yi_1 = array;
|
|
11052
11073
|
this.zi_1 = 0;
|
|
11053
11074
|
}
|
|
11054
|
-
protoOf(Iterator_1).
|
|
11075
|
+
protoOf(Iterator_1).q = function () {
|
|
11055
11076
|
return this.zi_1 < this.yi_1.length;
|
|
11056
11077
|
};
|
|
11057
11078
|
protoOf(Iterator_1).aj = function () {
|
|
@@ -11067,7 +11088,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11067
11088
|
}
|
|
11068
11089
|
return tmp;
|
|
11069
11090
|
};
|
|
11070
|
-
protoOf(Iterator_1).
|
|
11091
|
+
protoOf(Iterator_1).r = function () {
|
|
11071
11092
|
return new ULong(this.aj());
|
|
11072
11093
|
};
|
|
11073
11094
|
function ULongArray__contains_impl_v9bgai($this, element) {
|
|
@@ -11101,10 +11122,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11101
11122
|
function ULongArray(storage) {
|
|
11102
11123
|
this.bj_1 = storage;
|
|
11103
11124
|
}
|
|
11104
|
-
protoOf(ULongArray).
|
|
11125
|
+
protoOf(ULongArray).s = function () {
|
|
11105
11126
|
return _ULongArray___get_size__impl__ju6dtr(this.bj_1);
|
|
11106
11127
|
};
|
|
11107
|
-
protoOf(ULongArray).
|
|
11128
|
+
protoOf(ULongArray).p = function () {
|
|
11108
11129
|
return ULongArray__iterator_impl_cq4d2h(this.bj_1);
|
|
11109
11130
|
};
|
|
11110
11131
|
protoOf(ULongArray).cj = function (element) {
|
|
@@ -11113,7 +11134,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11113
11134
|
protoOf(ULongArray).d1 = function (element) {
|
|
11114
11135
|
return ULongArray__contains_impl_v9bgai_0(this, element);
|
|
11115
11136
|
};
|
|
11116
|
-
protoOf(ULongArray).
|
|
11137
|
+
protoOf(ULongArray).m = function () {
|
|
11117
11138
|
return ULongArray__isEmpty_impl_c3yngu(this.bj_1);
|
|
11118
11139
|
};
|
|
11119
11140
|
protoOf(ULongArray).toString = function () {
|
|
@@ -11205,7 +11226,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11205
11226
|
this.jj_1 = array;
|
|
11206
11227
|
this.kj_1 = 0;
|
|
11207
11228
|
}
|
|
11208
|
-
protoOf(Iterator_2).
|
|
11229
|
+
protoOf(Iterator_2).q = function () {
|
|
11209
11230
|
return this.kj_1 < this.jj_1.length;
|
|
11210
11231
|
};
|
|
11211
11232
|
protoOf(Iterator_2).lj = function () {
|
|
@@ -11221,7 +11242,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11221
11242
|
}
|
|
11222
11243
|
return tmp;
|
|
11223
11244
|
};
|
|
11224
|
-
protoOf(Iterator_2).
|
|
11245
|
+
protoOf(Iterator_2).r = function () {
|
|
11225
11246
|
return new UShort(this.lj());
|
|
11226
11247
|
};
|
|
11227
11248
|
function UShortArray__contains_impl_vo7k3g($this, element) {
|
|
@@ -11255,10 +11276,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11255
11276
|
function UShortArray(storage) {
|
|
11256
11277
|
this.mj_1 = storage;
|
|
11257
11278
|
}
|
|
11258
|
-
protoOf(UShortArray).
|
|
11279
|
+
protoOf(UShortArray).s = function () {
|
|
11259
11280
|
return _UShortArray___get_size__impl__jqto1b(this.mj_1);
|
|
11260
11281
|
};
|
|
11261
|
-
protoOf(UShortArray).
|
|
11282
|
+
protoOf(UShortArray).p = function () {
|
|
11262
11283
|
return UShortArray__iterator_impl_ktpenn(this.mj_1);
|
|
11263
11284
|
};
|
|
11264
11285
|
protoOf(UShortArray).nj = function (element) {
|
|
@@ -11267,7 +11288,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11267
11288
|
protoOf(UShortArray).d1 = function (element) {
|
|
11268
11289
|
return UShortArray__contains_impl_vo7k3g_0(this, element);
|
|
11269
11290
|
};
|
|
11270
|
-
protoOf(UShortArray).
|
|
11291
|
+
protoOf(UShortArray).m = function () {
|
|
11271
11292
|
return UShortArray__isEmpty_impl_cdd9l0(this.mj_1);
|
|
11272
11293
|
};
|
|
11273
11294
|
protoOf(UShortArray).toString = function () {
|
|
@@ -11346,304 +11367,306 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
11346
11367
|
_.$_$.i1 = IndexOutOfBoundsException_init_$Create$_0;
|
|
11347
11368
|
_.$_$.j1 = NoSuchElementException_init_$Create$;
|
|
11348
11369
|
_.$_$.k1 = NoSuchElementException_init_$Create$_0;
|
|
11349
|
-
_.$_$.l1 = RuntimeException_init_$
|
|
11350
|
-
_.$_$.m1 = RuntimeException_init_$
|
|
11351
|
-
_.$_$.n1 =
|
|
11352
|
-
_.$_$.o1 =
|
|
11353
|
-
_.$_$.p1 =
|
|
11354
|
-
_.$_$.q1 =
|
|
11355
|
-
_.$_$.r1 =
|
|
11356
|
-
_.$_$.s1 =
|
|
11357
|
-
_.$_$.t1 =
|
|
11358
|
-
_.$_$.u1 =
|
|
11359
|
-
_.$_$.v1 =
|
|
11360
|
-
_.$_$.w1 =
|
|
11361
|
-
_.$_$.x1 =
|
|
11362
|
-
_.$_$.y1 =
|
|
11363
|
-
_.$_$.z1 =
|
|
11364
|
-
_.$_$.a2 =
|
|
11365
|
-
_.$_$.b2 =
|
|
11366
|
-
_.$_$.c2 =
|
|
11367
|
-
_.$_$.d2 =
|
|
11368
|
-
_.$_$.e2 =
|
|
11369
|
-
_.$_$.f2 =
|
|
11370
|
-
_.$_$.g2 =
|
|
11371
|
-
_.$_$.h2 =
|
|
11372
|
-
_.$_$.i2 =
|
|
11373
|
-
_.$_$.j2 =
|
|
11374
|
-
_.$_$.k2 =
|
|
11375
|
-
_.$_$.l2 =
|
|
11376
|
-
_.$_$.m2 =
|
|
11377
|
-
_.$_$.n2 =
|
|
11378
|
-
_.$_$.o2 =
|
|
11379
|
-
_.$_$.p2 =
|
|
11380
|
-
_.$_$.q2 =
|
|
11381
|
-
_.$_$.r2 =
|
|
11382
|
-
_.$_$.s2 =
|
|
11383
|
-
_.$_$.t2 =
|
|
11384
|
-
_.$_$.u2 =
|
|
11385
|
-
_.$_$.v2 =
|
|
11386
|
-
_.$_$.w2 =
|
|
11387
|
-
_.$_$.x2 =
|
|
11388
|
-
_.$_$.y2 =
|
|
11389
|
-
_.$_$.z2 =
|
|
11390
|
-
_.$_$.a3 =
|
|
11391
|
-
_.$_$.b3 =
|
|
11392
|
-
_.$_$.c3 =
|
|
11393
|
-
_.$_$.d3 =
|
|
11394
|
-
_.$_$.e3 =
|
|
11395
|
-
_.$_$.f3 =
|
|
11396
|
-
_.$_$.g3 =
|
|
11397
|
-
_.$_$.h3 =
|
|
11398
|
-
_.$_$.i3 =
|
|
11399
|
-
_.$_$.j3 =
|
|
11400
|
-
_.$_$.k3 =
|
|
11401
|
-
_.$_$.l3 =
|
|
11402
|
-
_.$_$.m3 =
|
|
11403
|
-
_.$_$.n3 =
|
|
11404
|
-
_.$_$.o3 =
|
|
11405
|
-
_.$_$.p3 =
|
|
11406
|
-
_.$_$.q3 =
|
|
11407
|
-
_.$_$.r3 =
|
|
11408
|
-
_.$_$.s3 =
|
|
11409
|
-
_.$_$.t3 =
|
|
11410
|
-
_.$_$.u3 =
|
|
11411
|
-
_.$_$.v3 =
|
|
11412
|
-
_.$_$.w3 =
|
|
11413
|
-
_.$_$.x3 =
|
|
11414
|
-
_.$_$.y3 =
|
|
11415
|
-
_.$_$.z3 =
|
|
11416
|
-
_.$_$.a4 =
|
|
11417
|
-
_.$_$.b4 =
|
|
11418
|
-
_.$_$.c4 =
|
|
11419
|
-
_.$_$.d4 =
|
|
11420
|
-
_.$_$.e4 =
|
|
11421
|
-
_.$_$.f4 =
|
|
11422
|
-
_.$_$.g4 =
|
|
11423
|
-
_.$_$.h4 =
|
|
11424
|
-
_.$_$.i4 =
|
|
11425
|
-
_.$_$.j4 =
|
|
11426
|
-
_.$_$.k4 =
|
|
11427
|
-
_.$_$.l4 =
|
|
11428
|
-
_.$_$.m4 =
|
|
11429
|
-
_.$_$.n4 =
|
|
11430
|
-
_.$_$.o4 =
|
|
11431
|
-
_.$_$.p4 =
|
|
11432
|
-
_.$_$.q4 =
|
|
11433
|
-
_.$_$.r4 =
|
|
11434
|
-
_.$_$.s4 =
|
|
11435
|
-
_.$_$.t4 =
|
|
11436
|
-
_.$_$.u4 =
|
|
11437
|
-
_.$_$.v4 =
|
|
11438
|
-
_.$_$.w4 =
|
|
11439
|
-
_.$_$.x4 =
|
|
11440
|
-
_.$_$.y4 =
|
|
11441
|
-
_.$_$.z4 =
|
|
11442
|
-
_.$_$.a5 =
|
|
11443
|
-
_.$_$.b5 =
|
|
11444
|
-
_.$_$.c5 =
|
|
11445
|
-
_.$_$.d5 =
|
|
11446
|
-
_.$_$.e5 =
|
|
11447
|
-
_.$_$.f5 =
|
|
11448
|
-
_.$_$.g5 =
|
|
11449
|
-
_.$_$.h5 =
|
|
11450
|
-
_.$_$.i5 =
|
|
11451
|
-
_.$_$.j5 =
|
|
11452
|
-
_.$_$.k5 =
|
|
11453
|
-
_.$_$.l5 =
|
|
11454
|
-
_.$_$.m5 =
|
|
11455
|
-
_.$_$.n5 =
|
|
11456
|
-
_.$_$.o5 =
|
|
11457
|
-
_.$_$.p5 =
|
|
11458
|
-
_.$_$.q5 =
|
|
11459
|
-
_.$_$.r5 =
|
|
11460
|
-
_.$_$.s5 =
|
|
11461
|
-
_.$_$.t5 =
|
|
11462
|
-
_.$_$.u5 =
|
|
11463
|
-
_.$_$.v5 =
|
|
11464
|
-
_.$_$.w5 =
|
|
11465
|
-
_.$_$.x5 =
|
|
11466
|
-
_.$_$.y5 =
|
|
11467
|
-
_.$_$.z5 =
|
|
11468
|
-
_.$_$.a6 =
|
|
11469
|
-
_.$_$.b6 =
|
|
11470
|
-
_.$_$.c6 =
|
|
11471
|
-
_.$_$.d6 =
|
|
11472
|
-
_.$_$.e6 =
|
|
11473
|
-
_.$_$.f6 =
|
|
11474
|
-
_.$_$.g6 =
|
|
11475
|
-
_.$_$.h6 =
|
|
11476
|
-
_.$_$.i6 =
|
|
11477
|
-
_.$_$.j6 =
|
|
11478
|
-
_.$_$.k6 =
|
|
11479
|
-
_.$_$.l6 =
|
|
11480
|
-
_.$_$.m6 =
|
|
11481
|
-
_.$_$.n6 =
|
|
11482
|
-
_.$_$.o6 =
|
|
11483
|
-
_.$_$.p6 =
|
|
11484
|
-
_.$_$.q6 =
|
|
11485
|
-
_.$_$.r6 =
|
|
11486
|
-
_.$_$.s6 =
|
|
11487
|
-
_.$_$.t6 =
|
|
11488
|
-
_.$_$.u6 =
|
|
11489
|
-
_.$_$.v6 =
|
|
11490
|
-
_.$_$.w6 =
|
|
11491
|
-
_.$_$.x6 =
|
|
11492
|
-
_.$_$.y6 =
|
|
11493
|
-
_.$_$.z6 =
|
|
11494
|
-
_.$_$.a7 =
|
|
11495
|
-
_.$_$.b7 =
|
|
11496
|
-
_.$_$.c7 =
|
|
11497
|
-
_.$_$.d7 =
|
|
11498
|
-
_.$_$.e7 =
|
|
11499
|
-
_.$_$.f7 =
|
|
11500
|
-
_.$_$.g7 =
|
|
11501
|
-
_.$_$.h7 =
|
|
11502
|
-
_.$_$.i7 =
|
|
11503
|
-
_.$_$.j7 =
|
|
11504
|
-
_.$_$.k7 =
|
|
11505
|
-
_.$_$.l7 =
|
|
11506
|
-
_.$_$.m7 =
|
|
11507
|
-
_.$_$.n7 =
|
|
11508
|
-
_.$_$.o7 =
|
|
11509
|
-
_.$_$.p7 =
|
|
11510
|
-
_.$_$.q7 =
|
|
11511
|
-
_.$_$.r7 =
|
|
11512
|
-
_.$_$.s7 =
|
|
11513
|
-
_.$_$.t7 =
|
|
11514
|
-
_.$_$.u7 =
|
|
11515
|
-
_.$_$.v7 =
|
|
11516
|
-
_.$_$.w7 =
|
|
11517
|
-
_.$_$.x7 =
|
|
11518
|
-
_.$_$.y7 =
|
|
11519
|
-
_.$_$.z7 =
|
|
11520
|
-
_.$_$.a8 =
|
|
11521
|
-
_.$_$.b8 =
|
|
11522
|
-
_.$_$.c8 =
|
|
11523
|
-
_.$_$.d8 =
|
|
11524
|
-
_.$_$.e8 =
|
|
11525
|
-
_.$_$.f8 =
|
|
11526
|
-
_.$_$.g8 =
|
|
11527
|
-
_.$_$.h8 =
|
|
11528
|
-
_.$_$.i8 =
|
|
11529
|
-
_.$_$.j8 =
|
|
11530
|
-
_.$_$.k8 =
|
|
11531
|
-
_.$_$.l8 =
|
|
11532
|
-
_.$_$.m8 =
|
|
11533
|
-
_.$_$.n8 =
|
|
11534
|
-
_.$_$.o8 =
|
|
11535
|
-
_.$_$.p8 =
|
|
11536
|
-
_.$_$.q8 =
|
|
11537
|
-
_.$_$.r8 =
|
|
11538
|
-
_.$_$.s8 =
|
|
11539
|
-
_.$_$.t8 =
|
|
11540
|
-
_.$_$.u8 =
|
|
11541
|
-
_.$_$.v8 =
|
|
11542
|
-
_.$_$.w8 =
|
|
11543
|
-
_.$_$.x8 =
|
|
11544
|
-
_.$_$.y8 =
|
|
11545
|
-
_.$_$.z8 =
|
|
11546
|
-
_.$_$.a9 =
|
|
11547
|
-
_.$_$.b9 =
|
|
11548
|
-
_.$_$.c9 =
|
|
11549
|
-
_.$_$.d9 =
|
|
11550
|
-
_.$_$.e9 =
|
|
11551
|
-
_.$_$.f9 =
|
|
11552
|
-
_.$_$.g9 =
|
|
11553
|
-
_.$_$.h9 =
|
|
11554
|
-
_.$_$.i9 =
|
|
11555
|
-
_.$_$.j9 =
|
|
11556
|
-
_.$_$.k9 =
|
|
11557
|
-
_.$_$.l9 =
|
|
11558
|
-
_.$_$.m9 =
|
|
11559
|
-
_.$_$.n9 =
|
|
11560
|
-
_.$_$.o9 =
|
|
11561
|
-
_.$_$.p9 =
|
|
11562
|
-
_.$_$.q9 =
|
|
11563
|
-
_.$_$.r9 =
|
|
11564
|
-
_.$_$.s9 =
|
|
11565
|
-
_.$_$.t9 =
|
|
11566
|
-
_.$_$.u9 =
|
|
11567
|
-
_.$_$.v9 =
|
|
11568
|
-
_.$_$.w9 =
|
|
11569
|
-
_.$_$.x9 =
|
|
11570
|
-
_.$_$.y9 =
|
|
11571
|
-
_.$_$.z9 =
|
|
11572
|
-
_.$_$.aa =
|
|
11573
|
-
_.$_$.ba =
|
|
11574
|
-
_.$_$.ca =
|
|
11575
|
-
_.$_$.da =
|
|
11576
|
-
_.$_$.ea =
|
|
11577
|
-
_.$_$.fa =
|
|
11578
|
-
_.$_$.ga =
|
|
11579
|
-
_.$_$.ha =
|
|
11580
|
-
_.$_$.ia =
|
|
11581
|
-
_.$_$.ja =
|
|
11582
|
-
_.$_$.ka =
|
|
11583
|
-
_.$_$.la =
|
|
11584
|
-
_.$_$.ma =
|
|
11585
|
-
_.$_$.na =
|
|
11586
|
-
_.$_$.oa =
|
|
11587
|
-
_.$_$.pa =
|
|
11588
|
-
_.$_$.qa =
|
|
11589
|
-
_.$_$.ra =
|
|
11590
|
-
_.$_$.sa =
|
|
11591
|
-
_.$_$.ta =
|
|
11592
|
-
_.$_$.ua =
|
|
11593
|
-
_.$_$.va =
|
|
11594
|
-
_.$_$.wa =
|
|
11595
|
-
_.$_$.xa =
|
|
11596
|
-
_.$_$.ya =
|
|
11597
|
-
_.$_$.za =
|
|
11598
|
-
_.$_$.ab =
|
|
11599
|
-
_.$_$.bb =
|
|
11600
|
-
_.$_$.cb =
|
|
11601
|
-
_.$_$.db =
|
|
11602
|
-
_.$_$.eb =
|
|
11603
|
-
_.$_$.fb =
|
|
11604
|
-
_.$_$.gb =
|
|
11605
|
-
_.$_$.hb =
|
|
11606
|
-
_.$_$.ib =
|
|
11607
|
-
_.$_$.jb =
|
|
11608
|
-
_.$_$.kb =
|
|
11609
|
-
_.$_$.lb =
|
|
11610
|
-
_.$_$.mb =
|
|
11611
|
-
_.$_$.nb =
|
|
11612
|
-
_.$_$.ob =
|
|
11613
|
-
_.$_$.pb =
|
|
11614
|
-
_.$_$.qb =
|
|
11615
|
-
_.$_$.rb =
|
|
11616
|
-
_.$_$.sb =
|
|
11617
|
-
_.$_$.tb =
|
|
11618
|
-
_.$_$.ub =
|
|
11619
|
-
_.$_$.vb =
|
|
11620
|
-
_.$_$.wb =
|
|
11621
|
-
_.$_$.xb =
|
|
11622
|
-
_.$_$.yb =
|
|
11623
|
-
_.$_$.zb =
|
|
11624
|
-
_.$_$.ac =
|
|
11625
|
-
_.$_$.bc =
|
|
11626
|
-
_.$_$.cc =
|
|
11627
|
-
_.$_$.dc =
|
|
11628
|
-
_.$_$.ec =
|
|
11629
|
-
_.$_$.fc =
|
|
11630
|
-
_.$_$.gc =
|
|
11631
|
-
_.$_$.hc =
|
|
11632
|
-
_.$_$.ic =
|
|
11633
|
-
_.$_$.jc =
|
|
11634
|
-
_.$_$.kc =
|
|
11635
|
-
_.$_$.lc =
|
|
11636
|
-
_.$_$.mc =
|
|
11637
|
-
_.$_$.nc =
|
|
11638
|
-
_.$_$.oc =
|
|
11639
|
-
_.$_$.pc =
|
|
11640
|
-
_.$_$.qc =
|
|
11641
|
-
_.$_$.rc =
|
|
11642
|
-
_.$_$.sc =
|
|
11643
|
-
_.$_$.tc =
|
|
11644
|
-
_.$_$.uc =
|
|
11645
|
-
_.$_$.vc =
|
|
11646
|
-
_.$_$.wc =
|
|
11370
|
+
_.$_$.l1 = RuntimeException_init_$Init$;
|
|
11371
|
+
_.$_$.m1 = RuntimeException_init_$Create$_0;
|
|
11372
|
+
_.$_$.n1 = RuntimeException_init_$Init$_1;
|
|
11373
|
+
_.$_$.o1 = UnsupportedOperationException_init_$Create$_0;
|
|
11374
|
+
_.$_$.p1 = Duration__toIsoString_impl_9h6wsm;
|
|
11375
|
+
_.$_$.q1 = _Char___init__impl__6a9atx;
|
|
11376
|
+
_.$_$.r1 = Char__minus_impl_a2frrh;
|
|
11377
|
+
_.$_$.s1 = Char__toInt_impl_vasixd;
|
|
11378
|
+
_.$_$.t1 = toString;
|
|
11379
|
+
_.$_$.u1 = _Result___init__impl__xyqfz8;
|
|
11380
|
+
_.$_$.v1 = _Result___get_isFailure__impl__jpiriv;
|
|
11381
|
+
_.$_$.w1 = _Result___get_isSuccess__impl__sndoy8;
|
|
11382
|
+
_.$_$.x1 = _Result___get_value__impl__bjfvqg;
|
|
11383
|
+
_.$_$.y1 = _UByte___init__impl__g9hnc4;
|
|
11384
|
+
_.$_$.z1 = _UByte___get_data__impl__jof9qr;
|
|
11385
|
+
_.$_$.a2 = UByte__toString_impl_v72jg;
|
|
11386
|
+
_.$_$.b2 = UByteArray__get_impl_t5f3hv;
|
|
11387
|
+
_.$_$.c2 = _UByteArray___get_size__impl__h6pkdv;
|
|
11388
|
+
_.$_$.d2 = _UInt___init__impl__l7qpdl;
|
|
11389
|
+
_.$_$.e2 = _UInt___get_data__impl__f0vqqw;
|
|
11390
|
+
_.$_$.f2 = UInt__toString_impl_dbgl21;
|
|
11391
|
+
_.$_$.g2 = UIntArray__get_impl_gp5kza;
|
|
11392
|
+
_.$_$.h2 = _UIntArray___get_size__impl__r6l8ci;
|
|
11393
|
+
_.$_$.i2 = _ULong___init__impl__c78o9k;
|
|
11394
|
+
_.$_$.j2 = _ULong___get_data__impl__fggpzb;
|
|
11395
|
+
_.$_$.k2 = ULong__toString_impl_f9au7k;
|
|
11396
|
+
_.$_$.l2 = ULongArray__get_impl_pr71q9;
|
|
11397
|
+
_.$_$.m2 = _ULongArray___get_size__impl__ju6dtr;
|
|
11398
|
+
_.$_$.n2 = _UShort___init__impl__jigrne;
|
|
11399
|
+
_.$_$.o2 = _UShort___get_data__impl__g0245;
|
|
11400
|
+
_.$_$.p2 = UShort__toString_impl_edaoee;
|
|
11401
|
+
_.$_$.q2 = UShortArray__get_impl_fnbhmx;
|
|
11402
|
+
_.$_$.r2 = _UShortArray___get_size__impl__jqto1b;
|
|
11403
|
+
_.$_$.s2 = BooleanCompanionObject_instance;
|
|
11404
|
+
_.$_$.t2 = ByteCompanionObject_instance;
|
|
11405
|
+
_.$_$.u2 = DoubleCompanionObject_instance;
|
|
11406
|
+
_.$_$.v2 = FloatCompanionObject_instance;
|
|
11407
|
+
_.$_$.w2 = IntCompanionObject_instance;
|
|
11408
|
+
_.$_$.x2 = ShortCompanionObject_instance;
|
|
11409
|
+
_.$_$.y2 = StringCompanionObject_instance;
|
|
11410
|
+
_.$_$.z2 = PrimitiveClasses_getInstance;
|
|
11411
|
+
_.$_$.a3 = Companion_getInstance_11;
|
|
11412
|
+
_.$_$.b3 = Companion_getInstance_13;
|
|
11413
|
+
_.$_$.c3 = Companion_getInstance;
|
|
11414
|
+
_.$_$.d3 = Companion_getInstance_1;
|
|
11415
|
+
_.$_$.e3 = Companion_instance_12;
|
|
11416
|
+
_.$_$.f3 = Companion_getInstance_14;
|
|
11417
|
+
_.$_$.g3 = Companion_getInstance_15;
|
|
11418
|
+
_.$_$.h3 = Companion_getInstance_16;
|
|
11419
|
+
_.$_$.i3 = Companion_getInstance_17;
|
|
11420
|
+
_.$_$.j3 = Unit_instance;
|
|
11421
|
+
_.$_$.k3 = ArrayList;
|
|
11422
|
+
_.$_$.l3 = Collection;
|
|
11423
|
+
_.$_$.m3 = HashMap;
|
|
11424
|
+
_.$_$.n3 = HashSet;
|
|
11425
|
+
_.$_$.o3 = LinkedHashMap;
|
|
11426
|
+
_.$_$.p3 = LinkedHashSet;
|
|
11427
|
+
_.$_$.q3 = KtList;
|
|
11428
|
+
_.$_$.r3 = Entry;
|
|
11429
|
+
_.$_$.s3 = KtMap;
|
|
11430
|
+
_.$_$.t3 = KtMutableList;
|
|
11431
|
+
_.$_$.u3 = KtMutableMap;
|
|
11432
|
+
_.$_$.v3 = KtMutableSet;
|
|
11433
|
+
_.$_$.w3 = KtSet;
|
|
11434
|
+
_.$_$.x3 = addAll;
|
|
11435
|
+
_.$_$.y3 = asList;
|
|
11436
|
+
_.$_$.z3 = asReversed_0;
|
|
11437
|
+
_.$_$.a4 = asReversed;
|
|
11438
|
+
_.$_$.b4 = asSequence_0;
|
|
11439
|
+
_.$_$.c4 = binarySearch;
|
|
11440
|
+
_.$_$.d4 = checkBuilderCapacity;
|
|
11441
|
+
_.$_$.e4 = checkCountOverflow;
|
|
11442
|
+
_.$_$.f4 = checkIndexOverflow;
|
|
11443
|
+
_.$_$.g4 = collectionSizeOrDefault;
|
|
11444
|
+
_.$_$.h4 = contains;
|
|
11445
|
+
_.$_$.i4 = contentEquals;
|
|
11446
|
+
_.$_$.j4 = contentEquals_0;
|
|
11447
|
+
_.$_$.k4 = contentHashCode;
|
|
11448
|
+
_.$_$.l4 = copyToArray;
|
|
11449
|
+
_.$_$.m4 = distinct;
|
|
11450
|
+
_.$_$.n4 = drop;
|
|
11451
|
+
_.$_$.o4 = emptyList;
|
|
11452
|
+
_.$_$.p4 = emptyMap;
|
|
11453
|
+
_.$_$.q4 = emptySet;
|
|
11454
|
+
_.$_$.r4 = firstOrNull;
|
|
11455
|
+
_.$_$.s4 = first_0;
|
|
11456
|
+
_.$_$.t4 = first;
|
|
11457
|
+
_.$_$.u4 = flatten;
|
|
11458
|
+
_.$_$.v4 = getOrNull_0;
|
|
11459
|
+
_.$_$.w4 = getValue;
|
|
11460
|
+
_.$_$.x4 = get_indices;
|
|
11461
|
+
_.$_$.y4 = get_indices_0;
|
|
11462
|
+
_.$_$.z4 = joinToString_0;
|
|
11463
|
+
_.$_$.a5 = joinTo_0;
|
|
11464
|
+
_.$_$.b5 = get_lastIndex;
|
|
11465
|
+
_.$_$.c5 = get_lastIndex_1;
|
|
11466
|
+
_.$_$.d5 = get_lastIndex_0;
|
|
11467
|
+
_.$_$.e5 = lastOrNull;
|
|
11468
|
+
_.$_$.f5 = last_0;
|
|
11469
|
+
_.$_$.g5 = last;
|
|
11470
|
+
_.$_$.h5 = listOfNotNull;
|
|
11471
|
+
_.$_$.i5 = listOf;
|
|
11472
|
+
_.$_$.j5 = listOf_0;
|
|
11473
|
+
_.$_$.k5 = mapCapacity;
|
|
11474
|
+
_.$_$.l5 = mapOf_0;
|
|
11475
|
+
_.$_$.m5 = maxOrNull;
|
|
11476
|
+
_.$_$.n5 = minus;
|
|
11477
|
+
_.$_$.o5 = mutableListOf;
|
|
11478
|
+
_.$_$.p5 = mutableMapOf;
|
|
11479
|
+
_.$_$.q5 = plus_4;
|
|
11480
|
+
_.$_$.r5 = plus_1;
|
|
11481
|
+
_.$_$.s5 = plus_2;
|
|
11482
|
+
_.$_$.t5 = plus;
|
|
11483
|
+
_.$_$.u5 = plus_0;
|
|
11484
|
+
_.$_$.v5 = removeLastOrNull;
|
|
11485
|
+
_.$_$.w5 = removeLast;
|
|
11486
|
+
_.$_$.x5 = reversed;
|
|
11487
|
+
_.$_$.y5 = setOf;
|
|
11488
|
+
_.$_$.z5 = setOf_0;
|
|
11489
|
+
_.$_$.a6 = single_0;
|
|
11490
|
+
_.$_$.b6 = slice;
|
|
11491
|
+
_.$_$.c6 = sortWith_0;
|
|
11492
|
+
_.$_$.d6 = sortedWith;
|
|
11493
|
+
_.$_$.e6 = sorted;
|
|
11494
|
+
_.$_$.f6 = sum;
|
|
11495
|
+
_.$_$.g6 = takeLast;
|
|
11496
|
+
_.$_$.h6 = take;
|
|
11497
|
+
_.$_$.i6 = toBooleanArray;
|
|
11498
|
+
_.$_$.j6 = toHashSet;
|
|
11499
|
+
_.$_$.k6 = toList_1;
|
|
11500
|
+
_.$_$.l6 = toList_0;
|
|
11501
|
+
_.$_$.m6 = toList;
|
|
11502
|
+
_.$_$.n6 = toMap;
|
|
11503
|
+
_.$_$.o6 = toMutableList_0;
|
|
11504
|
+
_.$_$.p6 = toMutableMap;
|
|
11505
|
+
_.$_$.q6 = toSet_0;
|
|
11506
|
+
_.$_$.r6 = toSet;
|
|
11507
|
+
_.$_$.s6 = withIndex;
|
|
11508
|
+
_.$_$.t6 = withIndex_0;
|
|
11509
|
+
_.$_$.u6 = zip_0;
|
|
11510
|
+
_.$_$.v6 = zip;
|
|
11511
|
+
_.$_$.w6 = compareValues;
|
|
11512
|
+
_.$_$.x6 = get_COROUTINE_SUSPENDED;
|
|
11513
|
+
_.$_$.y6 = CoroutineImpl;
|
|
11514
|
+
_.$_$.z6 = enumEntries;
|
|
11515
|
+
_.$_$.a7 = println;
|
|
11516
|
+
_.$_$.b7 = println_0;
|
|
11517
|
+
_.$_$.c7 = print;
|
|
11518
|
+
_.$_$.d7 = FunctionAdapter;
|
|
11519
|
+
_.$_$.e7 = arrayIterator;
|
|
11520
|
+
_.$_$.f7 = booleanArray;
|
|
11521
|
+
_.$_$.g7 = captureStack;
|
|
11522
|
+
_.$_$.h7 = charArrayOf;
|
|
11523
|
+
_.$_$.i7 = charSequenceGet;
|
|
11524
|
+
_.$_$.j7 = charSequenceLength;
|
|
11525
|
+
_.$_$.k7 = charSequenceSubSequence;
|
|
11526
|
+
_.$_$.l7 = compareTo;
|
|
11527
|
+
_.$_$.m7 = equals;
|
|
11528
|
+
_.$_$.n7 = fillArrayVal;
|
|
11529
|
+
_.$_$.o7 = getBooleanHashCode;
|
|
11530
|
+
_.$_$.p7 = getNumberHashCode;
|
|
11531
|
+
_.$_$.q7 = getPropertyCallableRef;
|
|
11532
|
+
_.$_$.r7 = getStringHashCode;
|
|
11533
|
+
_.$_$.s7 = hashCode;
|
|
11534
|
+
_.$_$.t7 = initMetadataForClass;
|
|
11535
|
+
_.$_$.u7 = initMetadataForCompanion;
|
|
11536
|
+
_.$_$.v7 = initMetadataForCoroutine;
|
|
11537
|
+
_.$_$.w7 = initMetadataForInterface;
|
|
11538
|
+
_.$_$.x7 = initMetadataForLambda;
|
|
11539
|
+
_.$_$.y7 = initMetadataForObject;
|
|
11540
|
+
_.$_$.z7 = isArray;
|
|
11541
|
+
_.$_$.a8 = isBooleanArray;
|
|
11542
|
+
_.$_$.b8 = isByteArray;
|
|
11543
|
+
_.$_$.c8 = isCharArray;
|
|
11544
|
+
_.$_$.d8 = isCharSequence;
|
|
11545
|
+
_.$_$.e8 = isDoubleArray;
|
|
11546
|
+
_.$_$.f8 = isFloatArray;
|
|
11547
|
+
_.$_$.g8 = isIntArray;
|
|
11548
|
+
_.$_$.h8 = isInterface;
|
|
11549
|
+
_.$_$.i8 = isLongArray;
|
|
11550
|
+
_.$_$.j8 = isShortArray;
|
|
11551
|
+
_.$_$.k8 = get_js;
|
|
11552
|
+
_.$_$.l8 = json;
|
|
11553
|
+
_.$_$.m8 = numberRangeToNumber;
|
|
11554
|
+
_.$_$.n8 = numberToChar;
|
|
11555
|
+
_.$_$.o8 = numberToDouble;
|
|
11556
|
+
_.$_$.p8 = numberToInt;
|
|
11557
|
+
_.$_$.q8 = numberToLong;
|
|
11558
|
+
_.$_$.r8 = objectCreate;
|
|
11559
|
+
_.$_$.s8 = protoOf;
|
|
11560
|
+
_.$_$.t8 = toByte;
|
|
11561
|
+
_.$_$.u8 = toLong;
|
|
11562
|
+
_.$_$.v8 = toString_1;
|
|
11563
|
+
_.$_$.w8 = roundToInt;
|
|
11564
|
+
_.$_$.x8 = withSign;
|
|
11565
|
+
_.$_$.y8 = coerceAtLeast_1;
|
|
11566
|
+
_.$_$.z8 = coerceAtLeast;
|
|
11567
|
+
_.$_$.a9 = coerceAtLeast_0;
|
|
11568
|
+
_.$_$.b9 = coerceAtMost;
|
|
11569
|
+
_.$_$.c9 = coerceIn;
|
|
11570
|
+
_.$_$.d9 = coerceIn_0;
|
|
11571
|
+
_.$_$.e9 = until;
|
|
11572
|
+
_.$_$.f9 = KClass;
|
|
11573
|
+
_.$_$.g9 = KMutableProperty0;
|
|
11574
|
+
_.$_$.h9 = KMutableProperty1;
|
|
11575
|
+
_.$_$.i9 = KProperty0;
|
|
11576
|
+
_.$_$.j9 = KProperty1;
|
|
11577
|
+
_.$_$.k9 = KTypeParameter;
|
|
11578
|
+
_.$_$.l9 = SequenceScope;
|
|
11579
|
+
_.$_$.m9 = Sequence;
|
|
11580
|
+
_.$_$.n9 = filter;
|
|
11581
|
+
_.$_$.o9 = firstOrNull_0;
|
|
11582
|
+
_.$_$.p9 = generateSequence;
|
|
11583
|
+
_.$_$.q9 = generateSequence_0;
|
|
11584
|
+
_.$_$.r9 = joinToString_1;
|
|
11585
|
+
_.$_$.s9 = last_2;
|
|
11586
|
+
_.$_$.t9 = mapNotNull;
|
|
11587
|
+
_.$_$.u9 = map;
|
|
11588
|
+
_.$_$.v9 = maxOrNull_0;
|
|
11589
|
+
_.$_$.w9 = onEach;
|
|
11590
|
+
_.$_$.x9 = sequence;
|
|
11591
|
+
_.$_$.y9 = toList_2;
|
|
11592
|
+
_.$_$.z9 = Regex;
|
|
11593
|
+
_.$_$.aa = chunked;
|
|
11594
|
+
_.$_$.ba = commonPrefixWith;
|
|
11595
|
+
_.$_$.ca = contains_6;
|
|
11596
|
+
_.$_$.da = contains_5;
|
|
11597
|
+
_.$_$.ea = drop_0;
|
|
11598
|
+
_.$_$.fa = endsWith;
|
|
11599
|
+
_.$_$.ga = firstOrNull_1;
|
|
11600
|
+
_.$_$.ha = first_1;
|
|
11601
|
+
_.$_$.ia = get;
|
|
11602
|
+
_.$_$.ja = indexOf_5;
|
|
11603
|
+
_.$_$.ka = isBlank;
|
|
11604
|
+
_.$_$.la = isDigit;
|
|
11605
|
+
_.$_$.ma = isWhitespace;
|
|
11606
|
+
_.$_$.na = get_lastIndex_2;
|
|
11607
|
+
_.$_$.oa = lastIndexOf;
|
|
11608
|
+
_.$_$.pa = lineSequence;
|
|
11609
|
+
_.$_$.qa = padStart;
|
|
11610
|
+
_.$_$.ra = prependIndent;
|
|
11611
|
+
_.$_$.sa = removePrefix;
|
|
11612
|
+
_.$_$.ta = removeSuffix;
|
|
11613
|
+
_.$_$.ua = repeat;
|
|
11614
|
+
_.$_$.va = replace;
|
|
11615
|
+
_.$_$.wa = replace_0;
|
|
11616
|
+
_.$_$.xa = slice_0;
|
|
11617
|
+
_.$_$.ya = split;
|
|
11618
|
+
_.$_$.za = startsWith;
|
|
11619
|
+
_.$_$.ab = startsWith_2;
|
|
11620
|
+
_.$_$.bb = startsWith_1;
|
|
11621
|
+
_.$_$.cb = substringBefore;
|
|
11622
|
+
_.$_$.db = take_0;
|
|
11623
|
+
_.$_$.eb = toIntOrNull;
|
|
11624
|
+
_.$_$.fb = toInt_0;
|
|
11625
|
+
_.$_$.gb = toInt;
|
|
11626
|
+
_.$_$.hb = trimIndent;
|
|
11627
|
+
_.$_$.ib = trimMargin;
|
|
11628
|
+
_.$_$.jb = trimStart;
|
|
11629
|
+
_.$_$.kb = trim;
|
|
11630
|
+
_.$_$.lb = Duration;
|
|
11631
|
+
_.$_$.mb = Uuid;
|
|
11632
|
+
_.$_$.nb = ArithmeticException;
|
|
11633
|
+
_.$_$.ob = Char;
|
|
11634
|
+
_.$_$.pb = ClassCastException;
|
|
11635
|
+
_.$_$.qb = Comparable;
|
|
11636
|
+
_.$_$.rb = Comparator;
|
|
11637
|
+
_.$_$.sb = Enum;
|
|
11638
|
+
_.$_$.tb = Exception;
|
|
11639
|
+
_.$_$.ub = IllegalArgumentException;
|
|
11640
|
+
_.$_$.vb = IllegalStateException;
|
|
11641
|
+
_.$_$.wb = Long;
|
|
11642
|
+
_.$_$.xb = Pair;
|
|
11643
|
+
_.$_$.yb = Result;
|
|
11644
|
+
_.$_$.zb = RuntimeException;
|
|
11645
|
+
_.$_$.ac = THROW_CCE;
|
|
11646
|
+
_.$_$.bc = Triple;
|
|
11647
|
+
_.$_$.cc = UByteArray;
|
|
11648
|
+
_.$_$.dc = UByte;
|
|
11649
|
+
_.$_$.ec = UIntArray;
|
|
11650
|
+
_.$_$.fc = UInt;
|
|
11651
|
+
_.$_$.gc = ULongArray;
|
|
11652
|
+
_.$_$.hc = ULong;
|
|
11653
|
+
_.$_$.ic = UShortArray;
|
|
11654
|
+
_.$_$.jc = UShort;
|
|
11655
|
+
_.$_$.kc = Unit;
|
|
11656
|
+
_.$_$.lc = addSuppressed;
|
|
11657
|
+
_.$_$.mc = arrayOf;
|
|
11658
|
+
_.$_$.nc = closeFinally;
|
|
11659
|
+
_.$_$.oc = createFailure;
|
|
11660
|
+
_.$_$.pc = ensureNotNull;
|
|
11661
|
+
_.$_$.qc = isFinite;
|
|
11662
|
+
_.$_$.rc = isFinite_0;
|
|
11663
|
+
_.$_$.sc = lazy;
|
|
11664
|
+
_.$_$.tc = lazy_0;
|
|
11665
|
+
_.$_$.uc = noWhenBranchMatchedException;
|
|
11666
|
+
_.$_$.vc = plus_3;
|
|
11667
|
+
_.$_$.wc = toList_3;
|
|
11668
|
+
_.$_$.xc = toString_0;
|
|
11669
|
+
_.$_$.yc = to;
|
|
11647
11670
|
//endregion
|
|
11648
11671
|
return _;
|
|
11649
11672
|
}(module.exports));
|