@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1186 → 0.9.0-SNAPSHOT.1188
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/88b0986a7186d029-atomicfu-js-ir.js +6 -6
- package/Napier-napier-js-ir.js +26 -26
- package/antlr-kotlin-antlr-kotlin-runtime-js-ir.js +2946 -2946
- package/colormath-root-colormath-js-ir.js +470 -470
- package/fluid-locale-js-ir.js +125 -125
- package/kotlin-kotlin-stdlib-js-ir.js +169 -173
- package/kotlin-kotlin-stdlib-js-ir.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-parser-expressions.js +398 -398
- package/kotlin-mpp-godtools-tool-parser-parser.js +2071 -2071
- package/kotlin-mpp-godtools-tool-parser-state.js +215 -215
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +1798 -1798
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/package.json +1 -1
|
@@ -251,11 +251,9 @@ if (typeof Math.imul === 'undefined') {
|
|
|
251
251
|
setMetadataFor(Companion_7, 'Companion', objectMeta);
|
|
252
252
|
setMetadataFor(Char, 'Char', classMeta, VOID, [Comparable]);
|
|
253
253
|
setMetadataFor(Companion_8, 'Companion', objectMeta);
|
|
254
|
-
setMetadataFor(BitMask, 'BitMask', classMeta);
|
|
255
254
|
setMetadataFor(arrayIterator$1, VOID, classMeta);
|
|
256
255
|
setMetadataFor(Companion_9, 'Companion', objectMeta);
|
|
257
256
|
setMetadataFor(Long, 'Long', classMeta, Number_0, [Number_0, Comparable]);
|
|
258
|
-
setMetadataFor(InterfaceIdService, 'InterfaceIdService', objectMeta);
|
|
259
257
|
setMetadataFor(Digit, 'Digit', objectMeta);
|
|
260
258
|
setMetadataFor(CoroutineImpl, 'CoroutineImpl', classMeta, VOID, [Continuation]);
|
|
261
259
|
setMetadataFor(CompletedContinuation, 'CompletedContinuation', objectMeta, VOID, [Continuation]);
|
|
@@ -6887,48 +6885,14 @@ if (typeof Math.imul === 'undefined') {
|
|
|
6887
6885
|
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : toString_2(tmp0_safe_receiver);
|
|
6888
6886
|
return tmp1_elvis_lhs == null ? 'null' : tmp1_elvis_lhs;
|
|
6889
6887
|
}
|
|
6890
|
-
function
|
|
6891
|
-
var tmp = this;
|
|
6892
|
-
var tmp$ret$2;
|
|
6893
|
-
// Inline function 'kotlin.run' call
|
|
6894
|
-
// Inline function 'kotlin.contracts.contract' call
|
|
6895
|
-
var tmp$ret$1;
|
|
6896
|
-
// Inline function 'kotlin.js.BitMask.intArray.<anonymous>' call
|
|
6897
|
-
var tmp_0;
|
|
6898
|
-
if (activeBits.length === 0) {
|
|
6899
|
-
tmp_0 = new Int32Array(0);
|
|
6900
|
-
} else {
|
|
6901
|
-
var tmp$ret$0;
|
|
6902
|
-
// Inline function 'kotlin.js.asDynamic' call
|
|
6903
|
-
var tmp0_asDynamic = Math;
|
|
6904
|
-
tmp$ret$0 = tmp0_asDynamic;
|
|
6905
|
-
var max = tmp$ret$0.max.apply(null, activeBits);
|
|
6906
|
-
var intArray = new Int32Array((max >> 5) + 1 | 0);
|
|
6907
|
-
var indexedObject = activeBits;
|
|
6908
|
-
var inductionVariable = 0;
|
|
6909
|
-
var last = indexedObject.length;
|
|
6910
|
-
while (inductionVariable < last) {
|
|
6911
|
-
var activeBit = indexedObject[inductionVariable];
|
|
6912
|
-
inductionVariable = inductionVariable + 1 | 0;
|
|
6913
|
-
var numberIndex = activeBit >> 5;
|
|
6914
|
-
var positionInNumber = activeBit & 31;
|
|
6915
|
-
var numberWithSettledBit = 1 << positionInNumber;
|
|
6916
|
-
intArray[numberIndex] = intArray[numberIndex] | numberWithSettledBit;
|
|
6917
|
-
}
|
|
6918
|
-
tmp_0 = intArray;
|
|
6919
|
-
}
|
|
6920
|
-
tmp$ret$1 = tmp_0;
|
|
6921
|
-
tmp$ret$2 = tmp$ret$1;
|
|
6922
|
-
tmp.kd_1 = tmp$ret$2;
|
|
6923
|
-
}
|
|
6924
|
-
protoOf(BitMask).ld = function (possibleActiveBit) {
|
|
6888
|
+
function isBitSet(_this__u8e3s4, possibleActiveBit) {
|
|
6925
6889
|
var numberIndex = possibleActiveBit >> 5;
|
|
6926
|
-
if (numberIndex >
|
|
6890
|
+
if (numberIndex > _this__u8e3s4.length)
|
|
6927
6891
|
return false;
|
|
6928
6892
|
var positionInNumber = possibleActiveBit & 31;
|
|
6929
6893
|
var numberWithSettledBit = 1 << positionInNumber;
|
|
6930
|
-
return !((
|
|
6931
|
-
}
|
|
6894
|
+
return !((_this__u8e3s4[numberIndex] & numberWithSettledBit) === 0);
|
|
6895
|
+
}
|
|
6932
6896
|
function implement(interfaces) {
|
|
6933
6897
|
var maxSize = 1;
|
|
6934
6898
|
var masks = [];
|
|
@@ -6943,7 +6907,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
6943
6907
|
var imask = tmp1_elvis_lhs == null ? i.$imask$ : tmp1_elvis_lhs;
|
|
6944
6908
|
if (!(imask == null)) {
|
|
6945
6909
|
masks.push(imask);
|
|
6946
|
-
currentSize = imask.
|
|
6910
|
+
currentSize = imask.length;
|
|
6947
6911
|
}
|
|
6948
6912
|
var iid = i.$metadata$.iid;
|
|
6949
6913
|
var tmp2_safe_receiver = iid;
|
|
@@ -6951,56 +6915,58 @@ if (typeof Math.imul === 'undefined') {
|
|
|
6951
6915
|
if (tmp2_safe_receiver == null) {
|
|
6952
6916
|
tmp = null;
|
|
6953
6917
|
} else {
|
|
6954
|
-
var tmp$ret$
|
|
6918
|
+
var tmp$ret$1;
|
|
6955
6919
|
// Inline function 'kotlin.let' call
|
|
6956
6920
|
// Inline function 'kotlin.contracts.contract' call
|
|
6957
|
-
var tmp$ret$3;
|
|
6958
|
-
// Inline function 'kotlin.js.implement.<anonymous>' call
|
|
6959
|
-
var tmp$ret$2;
|
|
6960
|
-
// Inline function 'kotlin.arrayOf' call
|
|
6961
|
-
var tmp$ret$1;
|
|
6962
|
-
// Inline function 'kotlin.js.unsafeCast' call
|
|
6963
6921
|
var tmp$ret$0;
|
|
6964
|
-
// Inline function 'kotlin.js.
|
|
6965
|
-
tmp$ret$0 =
|
|
6922
|
+
// Inline function 'kotlin.js.implement.<anonymous>' call
|
|
6923
|
+
tmp$ret$0 = bitMaskWith(tmp2_safe_receiver);
|
|
6966
6924
|
tmp$ret$1 = tmp$ret$0;
|
|
6967
|
-
tmp
|
|
6968
|
-
tmp$ret$3 = new BitMask(tmp$ret$2);
|
|
6969
|
-
tmp$ret$4 = tmp$ret$3;
|
|
6970
|
-
tmp = tmp$ret$4;
|
|
6925
|
+
tmp = tmp$ret$1;
|
|
6971
6926
|
}
|
|
6972
6927
|
var iidImask = tmp;
|
|
6973
6928
|
if (!(iidImask == null)) {
|
|
6974
6929
|
masks.push(iidImask);
|
|
6975
|
-
currentSize = Math.max(currentSize, iidImask.
|
|
6930
|
+
currentSize = Math.max(currentSize, iidImask.length);
|
|
6976
6931
|
}
|
|
6977
6932
|
if (currentSize > maxSize) {
|
|
6978
6933
|
maxSize = currentSize;
|
|
6979
6934
|
}
|
|
6980
6935
|
}
|
|
6981
|
-
|
|
6982
|
-
var tmp_1 = maxSize;
|
|
6983
|
-
var tmp_2 = new Int32Array(tmp_1);
|
|
6984
|
-
while (tmp_0 < tmp_1) {
|
|
6985
|
-
var tmp_3 = tmp_0;
|
|
6986
|
-
var tmp$ret$5;
|
|
6987
|
-
// Inline function 'kotlin.js.implement.<anonymous>' call
|
|
6988
|
-
tmp$ret$5 = masks.reduce(implement$lambda(tmp_3), 0);
|
|
6989
|
-
tmp_2[tmp_3] = tmp$ret$5;
|
|
6990
|
-
tmp_0 = tmp_0 + 1 | 0;
|
|
6991
|
-
}
|
|
6992
|
-
var resultIntArray = tmp_2;
|
|
6993
|
-
var tmp$ret$6;
|
|
6994
|
-
// Inline function 'kotlin.emptyArray' call
|
|
6995
|
-
tmp$ret$6 = [];
|
|
6996
|
-
var result = new BitMask(tmp$ret$6);
|
|
6997
|
-
result.kd_1 = resultIntArray;
|
|
6998
|
-
return result;
|
|
6936
|
+
return compositeBitMask(maxSize, masks);
|
|
6999
6937
|
}
|
|
7000
|
-
function
|
|
7001
|
-
|
|
7002
|
-
|
|
7003
|
-
|
|
6938
|
+
function bitMaskWith(activeBit) {
|
|
6939
|
+
var intArray = new Int32Array((activeBit >> 5) + 1 | 0);
|
|
6940
|
+
var numberIndex = activeBit >> 5;
|
|
6941
|
+
var positionInNumber = activeBit & 31;
|
|
6942
|
+
var numberWithSettledBit = 1 << positionInNumber;
|
|
6943
|
+
intArray[numberIndex] = intArray[numberIndex] | numberWithSettledBit;
|
|
6944
|
+
return intArray;
|
|
6945
|
+
}
|
|
6946
|
+
function compositeBitMask(capacity, masks) {
|
|
6947
|
+
var tmp = 0;
|
|
6948
|
+
var tmp_0 = capacity;
|
|
6949
|
+
var tmp_1 = new Int32Array(tmp_0);
|
|
6950
|
+
while (tmp < tmp_0) {
|
|
6951
|
+
var tmp_2 = tmp;
|
|
6952
|
+
var tmp$ret$0;
|
|
6953
|
+
// Inline function 'kotlin.js.compositeBitMask.<anonymous>' call
|
|
6954
|
+
var result = 0;
|
|
6955
|
+
var indexedObject = masks;
|
|
6956
|
+
var inductionVariable = 0;
|
|
6957
|
+
var last = indexedObject.length;
|
|
6958
|
+
while (inductionVariable < last) {
|
|
6959
|
+
var mask = indexedObject[inductionVariable];
|
|
6960
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
6961
|
+
if (tmp_2 < mask.length) {
|
|
6962
|
+
result = result | mask[tmp_2];
|
|
6963
|
+
}
|
|
6964
|
+
}
|
|
6965
|
+
tmp$ret$0 = result;
|
|
6966
|
+
tmp_1[tmp_2] = tmp$ret$0;
|
|
6967
|
+
tmp = tmp + 1 | 0;
|
|
6968
|
+
}
|
|
6969
|
+
return tmp_1;
|
|
7004
6970
|
}
|
|
7005
6971
|
function fillArrayVal(array, initValue) {
|
|
7006
6972
|
var inductionVariable = 0;
|
|
@@ -7042,21 +7008,21 @@ if (typeof Math.imul === 'undefined') {
|
|
|
7042
7008
|
return tmp$ret$1;
|
|
7043
7009
|
}
|
|
7044
7010
|
function arrayIterator$1($array) {
|
|
7045
|
-
this.
|
|
7046
|
-
this.
|
|
7011
|
+
this.ld_1 = $array;
|
|
7012
|
+
this.kd_1 = 0;
|
|
7047
7013
|
}
|
|
7048
7014
|
protoOf(arrayIterator$1).g = function () {
|
|
7049
|
-
return !(this.
|
|
7015
|
+
return !(this.kd_1 === this.ld_1.length);
|
|
7050
7016
|
};
|
|
7051
7017
|
protoOf(arrayIterator$1).h = function () {
|
|
7052
7018
|
var tmp;
|
|
7053
|
-
if (!(this.
|
|
7019
|
+
if (!(this.kd_1 === this.ld_1.length)) {
|
|
7054
7020
|
var tmp0_this = this;
|
|
7055
|
-
var tmp1 = tmp0_this.
|
|
7056
|
-
tmp0_this.
|
|
7057
|
-
tmp = this.
|
|
7021
|
+
var tmp1 = tmp0_this.kd_1;
|
|
7022
|
+
tmp0_this.kd_1 = tmp1 + 1 | 0;
|
|
7023
|
+
tmp = this.ld_1[tmp1];
|
|
7058
7024
|
} else {
|
|
7059
|
-
throw NoSuchElementException_init_$Create$_0('' + this.
|
|
7025
|
+
throw NoSuchElementException_init_$Create$_0('' + this.kd_1);
|
|
7060
7026
|
}
|
|
7061
7027
|
return tmp;
|
|
7062
7028
|
};
|
|
@@ -7267,7 +7233,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
7267
7233
|
tmp_0 = doubleCompareTo(a, b);
|
|
7268
7234
|
} else {
|
|
7269
7235
|
if (b instanceof Long) {
|
|
7270
|
-
tmp_0 = doubleCompareTo(a, b.
|
|
7236
|
+
tmp_0 = doubleCompareTo(a, b.md());
|
|
7271
7237
|
} else {
|
|
7272
7238
|
tmp_0 = primitiveCompareTo(a, b);
|
|
7273
7239
|
}
|
|
@@ -7594,10 +7560,10 @@ if (typeof Math.imul === 'undefined') {
|
|
|
7594
7560
|
}
|
|
7595
7561
|
function Companion_9() {
|
|
7596
7562
|
Companion_instance_9 = this;
|
|
7597
|
-
this.
|
|
7598
|
-
this.
|
|
7599
|
-
this.
|
|
7600
|
-
this.
|
|
7563
|
+
this.nd_1 = new Long(0, -2147483648);
|
|
7564
|
+
this.od_1 = new Long(-1, 2147483647);
|
|
7565
|
+
this.pd_1 = 8;
|
|
7566
|
+
this.qd_1 = 64;
|
|
7601
7567
|
}
|
|
7602
7568
|
var Companion_instance_9;
|
|
7603
7569
|
function Companion_getInstance_9() {
|
|
@@ -7629,35 +7595,35 @@ if (typeof Math.imul === 'undefined') {
|
|
|
7629
7595
|
protoOf(Long).z4 = function (other) {
|
|
7630
7596
|
return divide(this, other);
|
|
7631
7597
|
};
|
|
7632
|
-
protoOf(Long).
|
|
7598
|
+
protoOf(Long).rd = function () {
|
|
7633
7599
|
return this.c5(new Long(1, 0));
|
|
7634
7600
|
};
|
|
7635
7601
|
protoOf(Long).y4 = function () {
|
|
7636
|
-
return this.
|
|
7602
|
+
return this.sd().c5(new Long(1, 0));
|
|
7637
7603
|
};
|
|
7638
|
-
protoOf(Long).
|
|
7604
|
+
protoOf(Long).td = function (bitCount) {
|
|
7639
7605
|
return shiftLeft(this, bitCount);
|
|
7640
7606
|
};
|
|
7641
|
-
protoOf(Long).
|
|
7607
|
+
protoOf(Long).ud = function (bitCount) {
|
|
7642
7608
|
return shiftRight(this, bitCount);
|
|
7643
7609
|
};
|
|
7644
7610
|
protoOf(Long).y5 = function (other) {
|
|
7645
7611
|
return new Long(this.w4_1 & other.w4_1, this.x4_1 & other.x4_1);
|
|
7646
7612
|
};
|
|
7647
|
-
protoOf(Long).
|
|
7613
|
+
protoOf(Long).vd = function (other) {
|
|
7648
7614
|
return new Long(this.w4_1 | other.w4_1, this.x4_1 | other.x4_1);
|
|
7649
7615
|
};
|
|
7650
|
-
protoOf(Long).
|
|
7616
|
+
protoOf(Long).sd = function () {
|
|
7651
7617
|
return new Long(~this.w4_1, ~this.x4_1);
|
|
7652
7618
|
};
|
|
7653
7619
|
protoOf(Long).b6 = function () {
|
|
7654
7620
|
return this.w4_1;
|
|
7655
7621
|
};
|
|
7656
|
-
protoOf(Long).
|
|
7622
|
+
protoOf(Long).md = function () {
|
|
7657
7623
|
return toNumber(this);
|
|
7658
7624
|
};
|
|
7659
7625
|
protoOf(Long).valueOf = function () {
|
|
7660
|
-
return this.
|
|
7626
|
+
return this.md();
|
|
7661
7627
|
};
|
|
7662
7628
|
protoOf(Long).equals = function (other) {
|
|
7663
7629
|
var tmp;
|
|
@@ -8116,7 +8082,22 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8116
8082
|
function getInterfaceMaskFor(obj, superType) {
|
|
8117
8083
|
_init_properties_reflectRuntime_kt__5r4uu3();
|
|
8118
8084
|
var tmp0_elvis_lhs = obj.$imask$;
|
|
8119
|
-
|
|
8085
|
+
var tmp;
|
|
8086
|
+
if (tmp0_elvis_lhs == null) {
|
|
8087
|
+
var tmp$ret$2;
|
|
8088
|
+
// Inline function 'kotlin.arrayOf' call
|
|
8089
|
+
var tmp$ret$1;
|
|
8090
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
8091
|
+
var tmp$ret$0;
|
|
8092
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
8093
|
+
tmp$ret$0 = [superType];
|
|
8094
|
+
tmp$ret$1 = tmp$ret$0;
|
|
8095
|
+
tmp$ret$2 = tmp$ret$1;
|
|
8096
|
+
tmp = implement(tmp$ret$2);
|
|
8097
|
+
} else {
|
|
8098
|
+
tmp = tmp0_elvis_lhs;
|
|
8099
|
+
}
|
|
8100
|
+
return tmp;
|
|
8120
8101
|
}
|
|
8121
8102
|
var properties_initialized_reflectRuntime_kt_inkhwd;
|
|
8122
8103
|
function _init_properties_reflectRuntime_kt__5r4uu3() {
|
|
@@ -8226,7 +8207,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8226
8207
|
tmp = tmp0_elvis_lhs;
|
|
8227
8208
|
}
|
|
8228
8209
|
var mask = tmp;
|
|
8229
|
-
return mask
|
|
8210
|
+
return isBitSet(mask, iface);
|
|
8230
8211
|
}
|
|
8231
8212
|
function setMetadataFor(ctor, name, metadataConstructor, parent, interfaces, associatedObjectKey, associatedObjects, suspendArity) {
|
|
8232
8213
|
if (!(parent == null)) {
|
|
@@ -8238,7 +8219,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8238
8219
|
ctor.$metadata$ = metadata;
|
|
8239
8220
|
if (!(interfaces == null)) {
|
|
8240
8221
|
var receiver = !(metadata.iid == null) ? ctor : ctor.prototype;
|
|
8241
|
-
receiver.$imask$ = implement(interfaces
|
|
8222
|
+
receiver.$imask$ = implement(interfaces);
|
|
8242
8223
|
}
|
|
8243
8224
|
}
|
|
8244
8225
|
function isInterface(obj, iface) {
|
|
@@ -8327,23 +8308,38 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8327
8308
|
return tmp$ret$0;
|
|
8328
8309
|
}
|
|
8329
8310
|
function interfaceMeta(name, associatedObjectKey, associatedObjects, suspendArity) {
|
|
8330
|
-
return createMetadata('interface', name, associatedObjectKey, associatedObjects, suspendArity, generateInterfaceId(
|
|
8331
|
-
}
|
|
8332
|
-
function generateInterfaceId(_this__u8e3s4) {
|
|
8333
|
-
var tmp0_this = _this__u8e3s4;
|
|
8334
|
-
tmp0_this.yd_1 = tmp0_this.yd_1 + 1 | 0;
|
|
8335
|
-
return _this__u8e3s4.yd_1;
|
|
8311
|
+
return createMetadata('interface', name, associatedObjectKey, associatedObjects, suspendArity, generateInterfaceId());
|
|
8336
8312
|
}
|
|
8337
|
-
function
|
|
8338
|
-
|
|
8339
|
-
|
|
8313
|
+
function generateInterfaceId() {
|
|
8314
|
+
if (!!(iid == null)) {
|
|
8315
|
+
iid = 0;
|
|
8316
|
+
}
|
|
8317
|
+
var tmp$ret$1;
|
|
8318
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
8319
|
+
var tmp0_unsafeCast = get_iid();
|
|
8320
|
+
var tmp$ret$0;
|
|
8321
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
8322
|
+
tmp$ret$0 = tmp0_unsafeCast;
|
|
8323
|
+
tmp$ret$1 = tmp$ret$0;
|
|
8324
|
+
iid = tmp$ret$1 + 1 | 0;
|
|
8325
|
+
var tmp$ret$3;
|
|
8326
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
8327
|
+
var tmp1_unsafeCast = get_iid();
|
|
8328
|
+
var tmp$ret$2;
|
|
8329
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
8330
|
+
tmp$ret$2 = tmp1_unsafeCast;
|
|
8331
|
+
tmp$ret$3 = tmp$ret$2;
|
|
8332
|
+
return tmp$ret$3;
|
|
8340
8333
|
}
|
|
8341
|
-
|
|
8342
|
-
|
|
8343
|
-
if (
|
|
8344
|
-
|
|
8345
|
-
|
|
8334
|
+
function get_iid() {
|
|
8335
|
+
var tmp = iid;
|
|
8336
|
+
if (!(tmp == null))
|
|
8337
|
+
return tmp;
|
|
8338
|
+
else {
|
|
8339
|
+
throwUninitializedPropertyAccessException('iid');
|
|
8340
|
+
}
|
|
8346
8341
|
}
|
|
8342
|
+
var iid;
|
|
8347
8343
|
function objectMeta(name, associatedObjectKey, associatedObjects, suspendArity) {
|
|
8348
8344
|
return createMetadata('object', name, associatedObjectKey, associatedObjects, suspendArity, null);
|
|
8349
8345
|
}
|
|
@@ -8440,8 +8436,8 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8440
8436
|
// Inline function 'kotlin.code' call
|
|
8441
8437
|
tmp$ret$0 = Char__toInt_impl_vasixd(_this__u8e3s4);
|
|
8442
8438
|
var ch = tmp$ret$0;
|
|
8443
|
-
var index = binarySearchRange(Digit_getInstance().
|
|
8444
|
-
var diff = ch - Digit_getInstance().
|
|
8439
|
+
var index = binarySearchRange(Digit_getInstance().wd_1, ch);
|
|
8440
|
+
var diff = ch - Digit_getInstance().wd_1[index] | 0;
|
|
8445
8441
|
return diff < 10 ? diff : -1;
|
|
8446
8442
|
}
|
|
8447
8443
|
function binarySearchRange(array, needle) {
|
|
@@ -8467,7 +8463,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8467
8463
|
var tmp$ret$0;
|
|
8468
8464
|
// Inline function 'kotlin.intArrayOf' call
|
|
8469
8465
|
tmp$ret$0 = new Int32Array([48, 1632, 1776, 1984, 2406, 2534, 2662, 2790, 2918, 3046, 3174, 3302, 3430, 3558, 3664, 3792, 3872, 4160, 4240, 6112, 6160, 6470, 6608, 6784, 6800, 6992, 7088, 7232, 7248, 42528, 43216, 43264, 43472, 43504, 43600, 44016, 65296]);
|
|
8470
|
-
tmp.
|
|
8466
|
+
tmp.wd_1 = tmp$ret$0;
|
|
8471
8467
|
}
|
|
8472
8468
|
var Digit_instance;
|
|
8473
8469
|
function Digit_getInstance() {
|
|
@@ -8483,59 +8479,59 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8483
8479
|
return (((9 <= ch ? ch <= 13 : false) ? true : 28 <= ch ? ch <= 32 : false) ? true : ch === 160) ? true : ch > 4096 ? (((((ch === 5760 ? true : 8192 <= ch ? ch <= 8202 : false) ? true : ch === 8232) ? true : ch === 8233) ? true : ch === 8239) ? true : ch === 8287) ? true : ch === 12288 : false;
|
|
8484
8480
|
}
|
|
8485
8481
|
function releaseIntercepted($this) {
|
|
8486
|
-
var intercepted = $this.
|
|
8482
|
+
var intercepted = $this.ee_1;
|
|
8487
8483
|
if (!(intercepted == null) ? !(intercepted === $this) : false) {
|
|
8488
8484
|
ensureNotNull($this.m3().q3(Key_getInstance())).p3(intercepted);
|
|
8489
8485
|
}
|
|
8490
|
-
$this.
|
|
8486
|
+
$this.ee_1 = CompletedContinuation_getInstance();
|
|
8491
8487
|
}
|
|
8492
8488
|
function CoroutineImpl(resultContinuation) {
|
|
8493
|
-
this.
|
|
8494
|
-
this.
|
|
8495
|
-
this.
|
|
8496
|
-
this.
|
|
8497
|
-
this.
|
|
8498
|
-
this.
|
|
8489
|
+
this.xd_1 = resultContinuation;
|
|
8490
|
+
this.yd_1 = 0;
|
|
8491
|
+
this.zd_1 = 0;
|
|
8492
|
+
this.ae_1 = null;
|
|
8493
|
+
this.be_1 = null;
|
|
8494
|
+
this.ce_1 = null;
|
|
8499
8495
|
var tmp = this;
|
|
8500
|
-
var tmp0_safe_receiver = this.
|
|
8501
|
-
tmp.
|
|
8502
|
-
this.
|
|
8496
|
+
var tmp0_safe_receiver = this.xd_1;
|
|
8497
|
+
tmp.de_1 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m3();
|
|
8498
|
+
this.ee_1 = null;
|
|
8503
8499
|
}
|
|
8504
|
-
protoOf(CoroutineImpl).
|
|
8505
|
-
this.
|
|
8500
|
+
protoOf(CoroutineImpl).fe = function (_set____db54di) {
|
|
8501
|
+
this.yd_1 = _set____db54di;
|
|
8506
8502
|
};
|
|
8507
|
-
protoOf(CoroutineImpl).
|
|
8508
|
-
return this.
|
|
8503
|
+
protoOf(CoroutineImpl).ge = function () {
|
|
8504
|
+
return this.yd_1;
|
|
8509
8505
|
};
|
|
8510
|
-
protoOf(CoroutineImpl).
|
|
8511
|
-
this.
|
|
8506
|
+
protoOf(CoroutineImpl).he = function (_set____db54di) {
|
|
8507
|
+
this.zd_1 = _set____db54di;
|
|
8512
8508
|
};
|
|
8513
|
-
protoOf(CoroutineImpl).
|
|
8514
|
-
return this.
|
|
8509
|
+
protoOf(CoroutineImpl).ie = function () {
|
|
8510
|
+
return this.zd_1;
|
|
8515
8511
|
};
|
|
8516
|
-
protoOf(CoroutineImpl).
|
|
8517
|
-
this.
|
|
8512
|
+
protoOf(CoroutineImpl).je = function (_set____db54di) {
|
|
8513
|
+
this.ae_1 = _set____db54di;
|
|
8518
8514
|
};
|
|
8519
|
-
protoOf(CoroutineImpl).
|
|
8520
|
-
return this.
|
|
8515
|
+
protoOf(CoroutineImpl).ke = function () {
|
|
8516
|
+
return this.ae_1;
|
|
8521
8517
|
};
|
|
8522
|
-
protoOf(CoroutineImpl).
|
|
8523
|
-
this.
|
|
8518
|
+
protoOf(CoroutineImpl).le = function (_set____db54di) {
|
|
8519
|
+
this.be_1 = _set____db54di;
|
|
8524
8520
|
};
|
|
8525
|
-
protoOf(CoroutineImpl).
|
|
8526
|
-
return this.
|
|
8521
|
+
protoOf(CoroutineImpl).me = function () {
|
|
8522
|
+
return this.be_1;
|
|
8527
8523
|
};
|
|
8528
|
-
protoOf(CoroutineImpl).
|
|
8529
|
-
this.
|
|
8524
|
+
protoOf(CoroutineImpl).ne = function (_set____db54di) {
|
|
8525
|
+
this.ce_1 = _set____db54di;
|
|
8530
8526
|
};
|
|
8531
|
-
protoOf(CoroutineImpl).
|
|
8532
|
-
return this.
|
|
8527
|
+
protoOf(CoroutineImpl).oe = function () {
|
|
8528
|
+
return this.ce_1;
|
|
8533
8529
|
};
|
|
8534
8530
|
protoOf(CoroutineImpl).m3 = function () {
|
|
8535
|
-
return ensureNotNull(this.
|
|
8531
|
+
return ensureNotNull(this.de_1);
|
|
8536
8532
|
};
|
|
8537
|
-
protoOf(CoroutineImpl).
|
|
8538
|
-
var tmp2_elvis_lhs = this.
|
|
8533
|
+
protoOf(CoroutineImpl).pe = function () {
|
|
8534
|
+
var tmp2_elvis_lhs = this.ee_1;
|
|
8539
8535
|
var tmp;
|
|
8540
8536
|
if (tmp2_elvis_lhs == null) {
|
|
8541
8537
|
var tmp$ret$0;
|
|
@@ -8545,7 +8541,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8545
8541
|
var tmp0_also = tmp1_elvis_lhs == null ? this : tmp1_elvis_lhs;
|
|
8546
8542
|
// Inline function 'kotlin.contracts.contract' call
|
|
8547
8543
|
// Inline function 'kotlin.coroutines.CoroutineImpl.intercepted.<anonymous>' call
|
|
8548
|
-
this.
|
|
8544
|
+
this.ee_1 = tmp0_also;
|
|
8549
8545
|
tmp$ret$0 = tmp0_also;
|
|
8550
8546
|
tmp = tmp$ret$0;
|
|
8551
8547
|
} else {
|
|
@@ -8553,7 +8549,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8553
8549
|
}
|
|
8554
8550
|
return tmp;
|
|
8555
8551
|
};
|
|
8556
|
-
protoOf(CoroutineImpl).
|
|
8552
|
+
protoOf(CoroutineImpl).qe = function (result) {
|
|
8557
8553
|
var current = this;
|
|
8558
8554
|
var tmp$ret$0;
|
|
8559
8555
|
// Inline function 'kotlin.Result.getOrNull' call
|
|
@@ -8573,13 +8569,13 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8573
8569
|
var tmp0_with = current;
|
|
8574
8570
|
// Inline function 'kotlin.contracts.contract' call
|
|
8575
8571
|
if (currentException == null) {
|
|
8576
|
-
tmp0_with.
|
|
8572
|
+
tmp0_with.ae_1 = currentResult;
|
|
8577
8573
|
} else {
|
|
8578
|
-
tmp0_with.
|
|
8579
|
-
tmp0_with.
|
|
8574
|
+
tmp0_with.yd_1 = tmp0_with.zd_1;
|
|
8575
|
+
tmp0_with.be_1 = currentException;
|
|
8580
8576
|
}
|
|
8581
8577
|
try {
|
|
8582
|
-
var outcome = tmp0_with.
|
|
8578
|
+
var outcome = tmp0_with.re();
|
|
8583
8579
|
if (outcome === get_COROUTINE_SUSPENDED())
|
|
8584
8580
|
return Unit_getInstance();
|
|
8585
8581
|
currentResult = outcome;
|
|
@@ -8593,7 +8589,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8593
8589
|
currentException = tmp$ret$1;
|
|
8594
8590
|
}
|
|
8595
8591
|
releaseIntercepted(tmp0_with);
|
|
8596
|
-
var completion = ensureNotNull(tmp0_with.
|
|
8592
|
+
var completion = ensureNotNull(tmp0_with.xd_1);
|
|
8597
8593
|
var tmp_1;
|
|
8598
8594
|
if (completion instanceof CoroutineImpl) {
|
|
8599
8595
|
current = completion;
|
|
@@ -8626,12 +8622,12 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8626
8622
|
}
|
|
8627
8623
|
};
|
|
8628
8624
|
protoOf(CoroutineImpl).n3 = function (result) {
|
|
8629
|
-
return this.
|
|
8625
|
+
return this.qe(result);
|
|
8630
8626
|
};
|
|
8631
|
-
protoOf(CoroutineImpl).
|
|
8627
|
+
protoOf(CoroutineImpl).se = function (completion) {
|
|
8632
8628
|
throw UnsupportedOperationException_init_$Create$_0('create(Continuation) has not been overridden');
|
|
8633
8629
|
};
|
|
8634
|
-
protoOf(CoroutineImpl).
|
|
8630
|
+
protoOf(CoroutineImpl).te = function (value, completion) {
|
|
8635
8631
|
throw UnsupportedOperationException_init_$Create$_0('create(Any?;Continuation) has not been overridden');
|
|
8636
8632
|
};
|
|
8637
8633
|
function CompletedContinuation() {
|
|
@@ -8640,12 +8636,12 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8640
8636
|
protoOf(CompletedContinuation).m3 = function () {
|
|
8641
8637
|
throw IllegalStateException_init_$Create$_0('This continuation is already complete');
|
|
8642
8638
|
};
|
|
8643
|
-
protoOf(CompletedContinuation).
|
|
8639
|
+
protoOf(CompletedContinuation).qe = function (result) {
|
|
8644
8640
|
// Inline function 'kotlin.error' call
|
|
8645
8641
|
throw IllegalStateException_init_$Create$_0('This continuation is already complete');
|
|
8646
8642
|
};
|
|
8647
8643
|
protoOf(CompletedContinuation).n3 = function (result) {
|
|
8648
|
-
return this.
|
|
8644
|
+
return this.qe(result);
|
|
8649
8645
|
};
|
|
8650
8646
|
protoOf(CompletedContinuation).toString = function () {
|
|
8651
8647
|
return 'This continuation is already complete';
|
|
@@ -8658,7 +8654,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8658
8654
|
}
|
|
8659
8655
|
function intercepted(_this__u8e3s4) {
|
|
8660
8656
|
var tmp0_safe_receiver = _this__u8e3s4 instanceof CoroutineImpl ? _this__u8e3s4 : null;
|
|
8661
|
-
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
8657
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.pe();
|
|
8662
8658
|
return tmp1_elvis_lhs == null ? _this__u8e3s4 : tmp1_elvis_lhs;
|
|
8663
8659
|
}
|
|
8664
8660
|
function createCoroutineUnintercepted(_this__u8e3s4, receiver, completion) {
|
|
@@ -8671,21 +8667,21 @@ if (typeof Math.imul === 'undefined') {
|
|
|
8671
8667
|
throw new NotImplementedError('It is intrinsic method');
|
|
8672
8668
|
}
|
|
8673
8669
|
function _no_name_provided__qut3iv_1($completion, $this_createCoroutineUnintercepted, $receiver) {
|
|
8674
|
-
this.
|
|
8675
|
-
this.
|
|
8676
|
-
this.
|
|
8670
|
+
this.cf_1 = $completion;
|
|
8671
|
+
this.df_1 = $this_createCoroutineUnintercepted;
|
|
8672
|
+
this.ef_1 = $receiver;
|
|
8677
8673
|
CoroutineImpl.call(this, isInterface($completion, Continuation) ? $completion : THROW_CCE());
|
|
8678
8674
|
}
|
|
8679
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
8680
|
-
if (this.
|
|
8681
|
-
throw this.
|
|
8675
|
+
protoOf(_no_name_provided__qut3iv_1).re = function () {
|
|
8676
|
+
if (this.be_1 != null)
|
|
8677
|
+
throw this.be_1;
|
|
8682
8678
|
var tmp$ret$1;
|
|
8683
8679
|
// Inline function 'kotlin.coroutines.intrinsics.createCoroutineUnintercepted.<anonymous>' call
|
|
8684
8680
|
var tmp$ret$0;
|
|
8685
8681
|
// Inline function 'kotlin.js.asDynamic' call
|
|
8686
|
-
tmp$ret$0 = this.
|
|
8682
|
+
tmp$ret$0 = this.df_1;
|
|
8687
8683
|
var a = tmp$ret$0;
|
|
8688
|
-
tmp$ret$1 = typeof a === 'function' ? a(this.
|
|
8684
|
+
tmp$ret$1 = typeof a === 'function' ? a(this.ef_1, this.cf_1) : this.df_1.ff(this.ef_1, this.cf_1);
|
|
8689
8685
|
return tmp$ret$1;
|
|
8690
8686
|
};
|
|
8691
8687
|
function IllegalArgumentException_init_$Init$($this) {
|