client_plugin_logic_deb 1.8.356 → 1.8.358
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/Kosi-Kaverit-kaverit.js +3 -3
- package/Kosi-Kodein-kodein-di.js +17 -17
- package/Kotlin-DateTime-library-kotlinx-datetime.js +32 -32
- package/Logic_Debertz-client_plugin.js +2283 -2283
- package/Logic_Debertz-core.js +223 -188
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +4111 -3927
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +6345 -6346
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +781 -781
- package/Logic_Debertz-game_server.js.map +1 -1
- package/error-library-error.js +1 -1
- package/kotlin-kotlin-stdlib.js +151 -137
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +1 -1
- package/kotlinx-coroutines-core.js +20 -20
- package/kotlinx-io-kotlinx-io-core.js +10 -10
- package/kotlinx-serialization-kotlinx-serialization-core.js +37 -37
- package/kotlinx-serialization-kotlinx-serialization-json.js +42 -42
- package/ktor-ktor-client-content-negotiation.js +6 -6
- package/ktor-ktor-client-core.js +20 -20
- package/ktor-ktor-client-logging.js +5 -5
- package/ktor-ktor-events.js +2 -2
- package/ktor-ktor-http.js +36 -36
- package/ktor-ktor-io.js +17 -17
- package/ktor-ktor-serialization-kotlinx.js +1 -1
- package/ktor-ktor-serialization.js +3 -3
- package/ktor-ktor-utils.js +13 -13
- package/ktor-ktor-websockets.js +5 -5
- package/package.json +1 -1
- package/random-library-crypto-rand.js +3 -3
- package/random-library-secure-random.js +1 -1
- package/raspberry-cardgame-lib-core.js +8 -8
- package/raspberry-cardgame-lib-logger.js +5 -5
- package/raspberry-cardgame-lib-random.js +10 -10
- package/uuid.js +4 -4
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -109,8 +109,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
109
109
|
}
|
|
110
110
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
111
111
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
112
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
113
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
112
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
113
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
114
114
|
initMetadataForCompanion(Companion_1);
|
|
115
115
|
initMetadataForInterface(Entry, 'Entry');
|
|
116
116
|
initMetadataForCompanion(Companion_2);
|
|
@@ -140,7 +140,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
140
140
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
141
141
|
initMetadataForObject(Unit, 'Unit');
|
|
142
142
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
143
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
143
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
|
|
144
144
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
145
145
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
146
146
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -153,7 +153,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
153
153
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
154
154
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
155
155
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
156
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
156
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
157
157
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
158
158
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
159
159
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -1299,6 +1299,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1299
1299
|
function coerceAtLeast(_this__u8e3s4, minimumValue) {
|
|
1300
1300
|
return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
|
|
1301
1301
|
}
|
|
1302
|
+
function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
|
|
1303
|
+
if (minimumValue > maximumValue)
|
|
1304
|
+
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
|
|
1305
|
+
if (_this__u8e3s4 < minimumValue)
|
|
1306
|
+
return minimumValue;
|
|
1307
|
+
if (_this__u8e3s4 > maximumValue)
|
|
1308
|
+
return maximumValue;
|
|
1309
|
+
return _this__u8e3s4;
|
|
1310
|
+
}
|
|
1311
|
+
function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
|
|
1312
|
+
return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
|
|
1313
|
+
}
|
|
1302
1314
|
function contains_5(_this__u8e3s4, value) {
|
|
1303
1315
|
// Inline function 'kotlin.let' call
|
|
1304
1316
|
var it = toIntExactOrNull(value);
|
|
@@ -1310,7 +1322,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1310
1322
|
function coerceAtMost(_this__u8e3s4, maximumValue) {
|
|
1311
1323
|
return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
|
|
1312
1324
|
}
|
|
1313
|
-
function
|
|
1325
|
+
function coerceIn_1(_this__u8e3s4, minimumValue, maximumValue) {
|
|
1314
1326
|
if (minimumValue > maximumValue)
|
|
1315
1327
|
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
|
|
1316
1328
|
if (_this__u8e3s4 < minimumValue)
|
|
@@ -1319,15 +1331,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1319
1331
|
return maximumValue;
|
|
1320
1332
|
return _this__u8e3s4;
|
|
1321
1333
|
}
|
|
1322
|
-
function
|
|
1334
|
+
function coerceIn_2(_this__u8e3s4, range) {
|
|
1323
1335
|
if (isInterface(range, ClosedFloatingPointRange)) {
|
|
1324
|
-
return
|
|
1336
|
+
return coerceIn_3(_this__u8e3s4, range);
|
|
1325
1337
|
}
|
|
1326
1338
|
if (range.p())
|
|
1327
1339
|
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
|
|
1328
1340
|
return _this__u8e3s4.z(range.g1()) < 0 ? range.g1() : _this__u8e3s4.z(range.f1()) > 0 ? range.f1() : _this__u8e3s4;
|
|
1329
1341
|
}
|
|
1330
|
-
function
|
|
1342
|
+
function coerceIn_3(_this__u8e3s4, range) {
|
|
1331
1343
|
if (range.p())
|
|
1332
1344
|
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
|
|
1333
1345
|
return range.h1(_this__u8e3s4, range.g1()) && !range.h1(range.g1(), _this__u8e3s4) ? range.g1() : range.h1(range.f1(), _this__u8e3s4) && !range.h1(_this__u8e3s4, range.f1()) ? range.f1() : _this__u8e3s4;
|
|
@@ -12742,7 +12754,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
12742
12754
|
function DelimitedRangesSequence$iterator$1(this$0) {
|
|
12743
12755
|
this.tk_1 = this$0;
|
|
12744
12756
|
this.ok_1 = -1;
|
|
12745
|
-
this.pk_1 =
|
|
12757
|
+
this.pk_1 = coerceIn_1(this$0.vk_1, 0, charSequenceLength(this$0.uk_1));
|
|
12746
12758
|
this.qk_1 = this.pk_1;
|
|
12747
12759
|
this.rk_1 = null;
|
|
12748
12760
|
this.sk_1 = 0;
|
|
@@ -13111,7 +13123,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
13111
13123
|
tmp_5 = false;
|
|
13112
13124
|
}
|
|
13113
13125
|
if (tmp_5) {
|
|
13114
|
-
tmp_4 = durationOfMillis(
|
|
13126
|
+
tmp_4 = durationOfMillis(coerceIn_2(totalMillis, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
|
|
13115
13127
|
} else {
|
|
13116
13128
|
tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
|
|
13117
13129
|
}
|
|
@@ -13124,7 +13136,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
13124
13136
|
var tmp_6;
|
|
13125
13137
|
// Inline function 'kotlin.Long.div' call
|
|
13126
13138
|
if (result.c3(toLong(scale)).equals(value)) {
|
|
13127
|
-
tmp_6 = durationOfMillis(
|
|
13139
|
+
tmp_6 = durationOfMillis(coerceIn_2(result, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
|
|
13128
13140
|
} else {
|
|
13129
13141
|
tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
|
|
13130
13142
|
}
|
|
@@ -16437,132 +16449,134 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
16437
16449
|
_.$_$.ad = roundToInt;
|
|
16438
16450
|
_.$_$.bd = round;
|
|
16439
16451
|
_.$_$.cd = ClosedRange;
|
|
16440
|
-
_.$_$.dd =
|
|
16441
|
-
_.$_$.ed =
|
|
16442
|
-
_.$_$.fd =
|
|
16443
|
-
_.$_$.gd =
|
|
16444
|
-
_.$_$.hd =
|
|
16445
|
-
_.$_$.id =
|
|
16446
|
-
_.$_$.jd =
|
|
16447
|
-
_.$_$.kd =
|
|
16448
|
-
_.$_$.ld =
|
|
16449
|
-
_.$_$.md =
|
|
16450
|
-
_.$_$.nd =
|
|
16451
|
-
_.$_$.od =
|
|
16452
|
-
_.$_$.pd =
|
|
16453
|
-
_.$_$.qd =
|
|
16454
|
-
_.$_$.rd =
|
|
16455
|
-
_.$_$.sd =
|
|
16456
|
-
_.$_$.td =
|
|
16457
|
-
_.$_$.ud =
|
|
16458
|
-
_.$_$.vd =
|
|
16459
|
-
_.$_$.wd =
|
|
16460
|
-
_.$_$.xd =
|
|
16461
|
-
_.$_$.yd =
|
|
16462
|
-
_.$_$.zd =
|
|
16463
|
-
_.$_$.ae =
|
|
16464
|
-
_.$_$.be =
|
|
16465
|
-
_.$_$.ce =
|
|
16466
|
-
_.$_$.de =
|
|
16467
|
-
_.$_$.ee =
|
|
16468
|
-
_.$_$.fe =
|
|
16469
|
-
_.$_$.ge =
|
|
16470
|
-
_.$_$.he =
|
|
16471
|
-
_.$_$.ie =
|
|
16472
|
-
_.$_$.je =
|
|
16473
|
-
_.$_$.ke =
|
|
16474
|
-
_.$_$.le =
|
|
16475
|
-
_.$_$.me =
|
|
16476
|
-
_.$_$.ne =
|
|
16477
|
-
_.$_$.oe =
|
|
16478
|
-
_.$_$.pe =
|
|
16479
|
-
_.$_$.qe =
|
|
16480
|
-
_.$_$.re =
|
|
16481
|
-
_.$_$.se =
|
|
16482
|
-
_.$_$.te =
|
|
16483
|
-
_.$_$.ue =
|
|
16484
|
-
_.$_$.ve =
|
|
16485
|
-
_.$_$.we =
|
|
16486
|
-
_.$_$.xe =
|
|
16487
|
-
_.$_$.ye =
|
|
16488
|
-
_.$_$.ze =
|
|
16489
|
-
_.$_$.af =
|
|
16490
|
-
_.$_$.bf =
|
|
16491
|
-
_.$_$.cf =
|
|
16492
|
-
_.$_$.df =
|
|
16493
|
-
_.$_$.ef =
|
|
16494
|
-
_.$_$.ff =
|
|
16495
|
-
_.$_$.gf =
|
|
16496
|
-
_.$_$.hf =
|
|
16497
|
-
_.$_$.if =
|
|
16498
|
-
_.$_$.jf =
|
|
16499
|
-
_.$_$.kf =
|
|
16500
|
-
_.$_$.lf =
|
|
16501
|
-
_.$_$.mf =
|
|
16502
|
-
_.$_$.nf =
|
|
16503
|
-
_.$_$.of =
|
|
16504
|
-
_.$_$.pf =
|
|
16505
|
-
_.$_$.qf =
|
|
16506
|
-
_.$_$.rf =
|
|
16507
|
-
_.$_$.sf =
|
|
16508
|
-
_.$_$.tf =
|
|
16509
|
-
_.$_$.uf =
|
|
16510
|
-
_.$_$.vf =
|
|
16511
|
-
_.$_$.wf =
|
|
16512
|
-
_.$_$.xf =
|
|
16513
|
-
_.$_$.yf =
|
|
16514
|
-
_.$_$.zf =
|
|
16515
|
-
_.$_$.ag =
|
|
16516
|
-
_.$_$.bg =
|
|
16517
|
-
_.$_$.cg =
|
|
16518
|
-
_.$_$.dg =
|
|
16519
|
-
_.$_$.eg =
|
|
16520
|
-
_.$_$.fg =
|
|
16521
|
-
_.$_$.gg =
|
|
16522
|
-
_.$_$.hg =
|
|
16523
|
-
_.$_$.ig =
|
|
16524
|
-
_.$_$.jg =
|
|
16525
|
-
_.$_$.kg =
|
|
16526
|
-
_.$_$.lg =
|
|
16527
|
-
_.$_$.mg =
|
|
16528
|
-
_.$_$.ng =
|
|
16529
|
-
_.$_$.og =
|
|
16530
|
-
_.$_$.pg =
|
|
16531
|
-
_.$_$.qg =
|
|
16532
|
-
_.$_$.rg =
|
|
16533
|
-
_.$_$.sg =
|
|
16534
|
-
_.$_$.tg =
|
|
16535
|
-
_.$_$.ug =
|
|
16536
|
-
_.$_$.vg =
|
|
16537
|
-
_.$_$.wg =
|
|
16538
|
-
_.$_$.xg =
|
|
16539
|
-
_.$_$.yg =
|
|
16540
|
-
_.$_$.zg =
|
|
16541
|
-
_.$_$.ah =
|
|
16542
|
-
_.$_$.bh =
|
|
16543
|
-
_.$_$.ch =
|
|
16544
|
-
_.$_$.dh =
|
|
16545
|
-
_.$_$.eh =
|
|
16546
|
-
_.$_$.fh =
|
|
16547
|
-
_.$_$.gh =
|
|
16548
|
-
_.$_$.hh =
|
|
16549
|
-
_.$_$.ih =
|
|
16550
|
-
_.$_$.jh =
|
|
16551
|
-
_.$_$.kh =
|
|
16552
|
-
_.$_$.lh =
|
|
16553
|
-
_.$_$.mh =
|
|
16554
|
-
_.$_$.nh =
|
|
16555
|
-
_.$_$.oh =
|
|
16556
|
-
_.$_$.ph =
|
|
16557
|
-
_.$_$.qh =
|
|
16558
|
-
_.$_$.rh =
|
|
16559
|
-
_.$_$.sh =
|
|
16560
|
-
_.$_$.th =
|
|
16561
|
-
_.$_$.uh =
|
|
16562
|
-
_.$_$.vh =
|
|
16563
|
-
_.$_$.wh =
|
|
16564
|
-
_.$_$.xh =
|
|
16565
|
-
_.$_$.yh =
|
|
16452
|
+
_.$_$.dd = coerceAtLeast_0;
|
|
16453
|
+
_.$_$.ed = coerceAtLeast;
|
|
16454
|
+
_.$_$.fd = coerceAtMost_0;
|
|
16455
|
+
_.$_$.gd = coerceAtMost;
|
|
16456
|
+
_.$_$.hd = coerceIn_0;
|
|
16457
|
+
_.$_$.id = coerceIn;
|
|
16458
|
+
_.$_$.jd = contains_5;
|
|
16459
|
+
_.$_$.kd = downTo;
|
|
16460
|
+
_.$_$.ld = step;
|
|
16461
|
+
_.$_$.md = until;
|
|
16462
|
+
_.$_$.nd = KClass;
|
|
16463
|
+
_.$_$.od = KMutableProperty1;
|
|
16464
|
+
_.$_$.pd = KProperty0;
|
|
16465
|
+
_.$_$.qd = KProperty1;
|
|
16466
|
+
_.$_$.rd = KTypeParameter;
|
|
16467
|
+
_.$_$.sd = filter;
|
|
16468
|
+
_.$_$.td = firstOrNull_2;
|
|
16469
|
+
_.$_$.ud = flatMap;
|
|
16470
|
+
_.$_$.vd = mapNotNull;
|
|
16471
|
+
_.$_$.wd = map;
|
|
16472
|
+
_.$_$.xd = toList_2;
|
|
16473
|
+
_.$_$.yd = concatToString;
|
|
16474
|
+
_.$_$.zd = contains_8;
|
|
16475
|
+
_.$_$.ae = contains_7;
|
|
16476
|
+
_.$_$.be = decodeToString;
|
|
16477
|
+
_.$_$.ce = encodeToByteArray;
|
|
16478
|
+
_.$_$.de = endsWith_0;
|
|
16479
|
+
_.$_$.ee = endsWith;
|
|
16480
|
+
_.$_$.fe = equals_0;
|
|
16481
|
+
_.$_$.ge = first_2;
|
|
16482
|
+
_.$_$.he = indexOfAny;
|
|
16483
|
+
_.$_$.ie = indexOf_5;
|
|
16484
|
+
_.$_$.je = indexOf_4;
|
|
16485
|
+
_.$_$.ke = isBlank;
|
|
16486
|
+
_.$_$.le = isHighSurrogate;
|
|
16487
|
+
_.$_$.me = isLowSurrogate;
|
|
16488
|
+
_.$_$.ne = isSurrogate;
|
|
16489
|
+
_.$_$.oe = isWhitespace;
|
|
16490
|
+
_.$_$.pe = get_lastIndex_3;
|
|
16491
|
+
_.$_$.qe = lastIndexOf_0;
|
|
16492
|
+
_.$_$.re = last_2;
|
|
16493
|
+
_.$_$.se = padStart;
|
|
16494
|
+
_.$_$.te = removePrefix;
|
|
16495
|
+
_.$_$.ue = removeSuffix;
|
|
16496
|
+
_.$_$.ve = repeat;
|
|
16497
|
+
_.$_$.we = replace;
|
|
16498
|
+
_.$_$.xe = replace_0;
|
|
16499
|
+
_.$_$.ye = single_2;
|
|
16500
|
+
_.$_$.ze = split;
|
|
16501
|
+
_.$_$.af = split_0;
|
|
16502
|
+
_.$_$.bf = startsWith;
|
|
16503
|
+
_.$_$.cf = startsWith_1;
|
|
16504
|
+
_.$_$.df = substringAfter;
|
|
16505
|
+
_.$_$.ef = substringBefore;
|
|
16506
|
+
_.$_$.ff = substring_0;
|
|
16507
|
+
_.$_$.gf = substring;
|
|
16508
|
+
_.$_$.hf = take_0;
|
|
16509
|
+
_.$_$.if = toBooleanStrictOrNull;
|
|
16510
|
+
_.$_$.jf = toDoubleOrNull;
|
|
16511
|
+
_.$_$.kf = toDouble;
|
|
16512
|
+
_.$_$.lf = toIntOrNull;
|
|
16513
|
+
_.$_$.mf = toInt;
|
|
16514
|
+
_.$_$.nf = toLongOrNull;
|
|
16515
|
+
_.$_$.of = toLong_0;
|
|
16516
|
+
_.$_$.pf = toString_3;
|
|
16517
|
+
_.$_$.qf = toUByte;
|
|
16518
|
+
_.$_$.rf = toUInt;
|
|
16519
|
+
_.$_$.sf = toULongOrNull;
|
|
16520
|
+
_.$_$.tf = toULong;
|
|
16521
|
+
_.$_$.uf = toUShort;
|
|
16522
|
+
_.$_$.vf = trimIndent;
|
|
16523
|
+
_.$_$.wf = trimMargin;
|
|
16524
|
+
_.$_$.xf = trim;
|
|
16525
|
+
_.$_$.yf = Duration;
|
|
16526
|
+
_.$_$.zf = Instant;
|
|
16527
|
+
_.$_$.ag = toDuration_1;
|
|
16528
|
+
_.$_$.bg = toDuration_0;
|
|
16529
|
+
_.$_$.cg = toDuration;
|
|
16530
|
+
_.$_$.dg = Uuid;
|
|
16531
|
+
_.$_$.eg = ArithmeticException;
|
|
16532
|
+
_.$_$.fg = Char;
|
|
16533
|
+
_.$_$.gg = Comparable;
|
|
16534
|
+
_.$_$.hg = Comparator;
|
|
16535
|
+
_.$_$.ig = DeepRecursiveFunction;
|
|
16536
|
+
_.$_$.jg = DeepRecursiveScope;
|
|
16537
|
+
_.$_$.kg = Enum;
|
|
16538
|
+
_.$_$.lg = Error_0;
|
|
16539
|
+
_.$_$.mg = Exception;
|
|
16540
|
+
_.$_$.ng = IllegalArgumentException;
|
|
16541
|
+
_.$_$.og = IllegalStateException;
|
|
16542
|
+
_.$_$.pg = Long;
|
|
16543
|
+
_.$_$.qg = NoSuchElementException;
|
|
16544
|
+
_.$_$.rg = NotImplementedError;
|
|
16545
|
+
_.$_$.sg = Pair;
|
|
16546
|
+
_.$_$.tg = Result;
|
|
16547
|
+
_.$_$.ug = RuntimeException;
|
|
16548
|
+
_.$_$.vg = THROW_CCE;
|
|
16549
|
+
_.$_$.wg = THROW_IAE;
|
|
16550
|
+
_.$_$.xg = Triple;
|
|
16551
|
+
_.$_$.yg = UByteArray;
|
|
16552
|
+
_.$_$.zg = UByte;
|
|
16553
|
+
_.$_$.ah = UIntArray;
|
|
16554
|
+
_.$_$.bh = UInt;
|
|
16555
|
+
_.$_$.ch = ULongArray;
|
|
16556
|
+
_.$_$.dh = ULong;
|
|
16557
|
+
_.$_$.eh = UShortArray;
|
|
16558
|
+
_.$_$.fh = UShort;
|
|
16559
|
+
_.$_$.gh = Unit;
|
|
16560
|
+
_.$_$.hh = UnsupportedOperationException;
|
|
16561
|
+
_.$_$.ih = addSuppressed;
|
|
16562
|
+
_.$_$.jh = arrayOf;
|
|
16563
|
+
_.$_$.kh = countTrailingZeroBits;
|
|
16564
|
+
_.$_$.lh = createFailure;
|
|
16565
|
+
_.$_$.mh = ensureNotNull;
|
|
16566
|
+
_.$_$.nh = invoke;
|
|
16567
|
+
_.$_$.oh = isFinite;
|
|
16568
|
+
_.$_$.ph = isFinite_0;
|
|
16569
|
+
_.$_$.qh = isNaN_0;
|
|
16570
|
+
_.$_$.rh = lazy_0;
|
|
16571
|
+
_.$_$.sh = lazy;
|
|
16572
|
+
_.$_$.th = noWhenBranchMatchedException;
|
|
16573
|
+
_.$_$.uh = plus_4;
|
|
16574
|
+
_.$_$.vh = printStackTrace;
|
|
16575
|
+
_.$_$.wh = stackTraceToString;
|
|
16576
|
+
_.$_$.xh = throwOnFailure;
|
|
16577
|
+
_.$_$.yh = throwUninitializedPropertyAccessException;
|
|
16578
|
+
_.$_$.zh = toString_0;
|
|
16579
|
+
_.$_$.ai = to;
|
|
16566
16580
|
//endregion
|
|
16567
16581
|
return _;
|
|
16568
16582
|
}));
|