game_client_logic_deb 1.5.5 → 1.5.6
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/Logic_Debertz-core.js +290 -282
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +6708 -6595
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +3 -2
- package/Logic_Debertz-game_client.js +429 -429
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -205,16 +205,16 @@
|
|
|
205
205
|
setMetadataFor(_no_name_provided__qut3iv, VOID, classMeta, AbstractCoroutineContextElement, [AbstractCoroutineContextElement, Element]);
|
|
206
206
|
setMetadataFor(AsyncProviderImpl$launchWorkerWithLock$slambda, 'AsyncProviderImpl$launchWorkerWithLock$slambda', classMeta, CoroutineImpl, VOID, VOID, VOID, [1]);
|
|
207
207
|
function launchWorker$default(context, block, $super) {
|
|
208
|
-
context = context === VOID ? this.
|
|
209
|
-
return $super === VOID ? this.
|
|
208
|
+
context = context === VOID ? this.a2m() : context;
|
|
209
|
+
return $super === VOID ? this.d2m(context, block) : $super.d2m.call(this, context, block);
|
|
210
210
|
}
|
|
211
211
|
function launchWorkerWithLock$default(context, block, $super) {
|
|
212
|
-
context = context === VOID ? this.
|
|
213
|
-
return $super === VOID ? this.
|
|
212
|
+
context = context === VOID ? this.a2m() : context;
|
|
213
|
+
return $super === VOID ? this.f2m(context, block) : $super.f2m.call(this, context, block);
|
|
214
214
|
}
|
|
215
215
|
function launchStore$default(context, block, $super) {
|
|
216
|
-
context = context === VOID ? this.
|
|
217
|
-
return $super === VOID ? this.
|
|
216
|
+
context = context === VOID ? this.a2m() : context;
|
|
217
|
+
return $super === VOID ? this.b2m(context, block) : $super.b2m.call(this, context, block);
|
|
218
218
|
}
|
|
219
219
|
setMetadataFor(AsyncProvider, 'AsyncProvider', interfaceMeta);
|
|
220
220
|
setMetadataFor(AsyncProviderImpl, 'AsyncProviderImpl', classMeta, VOID, [AsyncProvider]);
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
return false;
|
|
254
254
|
}
|
|
255
255
|
function get_isAutoStartTimer() {
|
|
256
|
-
return !this.
|
|
256
|
+
return !this.h2o() ? !this.i2o() : false;
|
|
257
257
|
}
|
|
258
258
|
setMetadataFor(ExpectantAction, 'ExpectantAction', interfaceMeta, VOID, [BufferedAction]);
|
|
259
259
|
setMetadataFor(TimerAction, 'TimerAction', classMeta, VOID, [Action]);
|
|
@@ -279,19 +279,19 @@
|
|
|
279
279
|
function d(tag, message, payload, $super) {
|
|
280
280
|
tag = tag === VOID ? null : tag;
|
|
281
281
|
payload = payload === VOID ? null : payload;
|
|
282
|
-
return this.
|
|
282
|
+
return this.z2q(tag, message, payload);
|
|
283
283
|
}
|
|
284
284
|
function e(tag, message, exception, payload, $super) {
|
|
285
285
|
tag = tag === VOID ? null : tag;
|
|
286
286
|
message = message === VOID ? null : message;
|
|
287
287
|
exception = exception === VOID ? null : exception;
|
|
288
288
|
payload = payload === VOID ? null : payload;
|
|
289
|
-
return this.
|
|
289
|
+
return this.a2r(tag, message, exception, payload);
|
|
290
290
|
}
|
|
291
291
|
function w(tag, message, payload, $super) {
|
|
292
292
|
tag = tag === VOID ? null : tag;
|
|
293
293
|
payload = payload === VOID ? null : payload;
|
|
294
|
-
return this.
|
|
294
|
+
return this.b2r(tag, message, payload);
|
|
295
295
|
}
|
|
296
296
|
setMetadataFor(LoggerOutput, 'LoggerOutput', interfaceMeta);
|
|
297
297
|
setMetadataFor(GameLogger, 'GameLogger', interfaceMeta, VOID, [LoggerOutput]);
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
setMetadataFor(LogType, 'LogType', classMeta, Enum, VOID, VOID, {0: Companion_getInstance_20});
|
|
304
304
|
function observe(types, $super) {
|
|
305
305
|
types = types === VOID ? values_4() : types;
|
|
306
|
-
return this.
|
|
306
|
+
return this.i2r(types);
|
|
307
307
|
}
|
|
308
308
|
setMetadataFor(ObservableLoggerOutput, 'ObservableLoggerOutput', interfaceMeta, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
309
309
|
setMetadataFor(Companion_20, 'Companion', objectMeta);
|
|
@@ -313,7 +313,7 @@
|
|
|
313
313
|
//endregion
|
|
314
314
|
function GameEngineConfig() {
|
|
315
315
|
GameEngineConfig_instance = this;
|
|
316
|
-
this.version = '1.5.
|
|
316
|
+
this.version = '1.5.6';
|
|
317
317
|
}
|
|
318
318
|
protoOf(GameEngineConfig).s2e = function () {
|
|
319
319
|
return this.version;
|
|
@@ -1733,9 +1733,10 @@
|
|
|
1733
1733
|
PlayerConnectionState_initEntries();
|
|
1734
1734
|
return PlayerConnectionState_DELETED_instance;
|
|
1735
1735
|
}
|
|
1736
|
-
function PlayerLuckyFactor(playerId, factor) {
|
|
1736
|
+
function PlayerLuckyFactor(playerId, factor, isLive) {
|
|
1737
1737
|
this.d2h_1 = playerId;
|
|
1738
1738
|
this.factor = factor;
|
|
1739
|
+
this.isLive = isLive;
|
|
1739
1740
|
}
|
|
1740
1741
|
protoOf(PlayerLuckyFactor).k2f = function () {
|
|
1741
1742
|
return this.d2h_1;
|
|
@@ -1743,26 +1744,34 @@
|
|
|
1743
1744
|
protoOf(PlayerLuckyFactor).e2h = function () {
|
|
1744
1745
|
return this.factor;
|
|
1745
1746
|
};
|
|
1747
|
+
protoOf(PlayerLuckyFactor).v2g = function () {
|
|
1748
|
+
return this.isLive;
|
|
1749
|
+
};
|
|
1746
1750
|
protoOf(PlayerLuckyFactor).t3 = function () {
|
|
1747
1751
|
return this.d2h_1;
|
|
1748
1752
|
};
|
|
1749
1753
|
protoOf(PlayerLuckyFactor).u3 = function () {
|
|
1750
1754
|
return this.factor;
|
|
1751
1755
|
};
|
|
1752
|
-
protoOf(PlayerLuckyFactor).
|
|
1753
|
-
return
|
|
1756
|
+
protoOf(PlayerLuckyFactor).d9 = function () {
|
|
1757
|
+
return this.isLive;
|
|
1758
|
+
};
|
|
1759
|
+
protoOf(PlayerLuckyFactor).f2h = function (playerId, factor, isLive) {
|
|
1760
|
+
return new PlayerLuckyFactor(playerId, factor, isLive);
|
|
1754
1761
|
};
|
|
1755
|
-
protoOf(PlayerLuckyFactor).copy = function (playerId, factor, $super) {
|
|
1762
|
+
protoOf(PlayerLuckyFactor).copy = function (playerId, factor, isLive, $super) {
|
|
1756
1763
|
playerId = playerId === VOID ? this.d2h_1 : playerId;
|
|
1757
1764
|
factor = factor === VOID ? this.factor : factor;
|
|
1758
|
-
|
|
1765
|
+
isLive = isLive === VOID ? this.isLive : isLive;
|
|
1766
|
+
return this.f2h(playerId, factor, isLive);
|
|
1759
1767
|
};
|
|
1760
1768
|
protoOf(PlayerLuckyFactor).toString = function () {
|
|
1761
|
-
return 'PlayerLuckyFactor(playerId=' + this.d2h_1 + ', factor=' + this.factor + ')';
|
|
1769
|
+
return 'PlayerLuckyFactor(playerId=' + this.d2h_1 + ', factor=' + this.factor + ', isLive=' + this.isLive + ')';
|
|
1762
1770
|
};
|
|
1763
1771
|
protoOf(PlayerLuckyFactor).hashCode = function () {
|
|
1764
1772
|
var result = getStringHashCode(this.d2h_1);
|
|
1765
1773
|
result = imul(result, 31) + getNumberHashCode(this.factor) | 0;
|
|
1774
|
+
result = imul(result, 31) + (this.isLive | 0) | 0;
|
|
1766
1775
|
return result;
|
|
1767
1776
|
};
|
|
1768
1777
|
protoOf(PlayerLuckyFactor).equals = function (other) {
|
|
@@ -1775,6 +1784,8 @@
|
|
|
1775
1784
|
return false;
|
|
1776
1785
|
if (!equals(this.factor, tmp0_other_with_cast.factor))
|
|
1777
1786
|
return false;
|
|
1787
|
+
if (!(this.isLive === tmp0_other_with_cast.isLive))
|
|
1788
|
+
return false;
|
|
1778
1789
|
return true;
|
|
1779
1790
|
};
|
|
1780
1791
|
defineProp(protoOf(PlayerLuckyFactor), 'playerId', function () {
|
|
@@ -3309,11 +3320,11 @@
|
|
|
3309
3320
|
}
|
|
3310
3321
|
return tmp;
|
|
3311
3322
|
}
|
|
3312
|
-
function getValueInHand(_this__u8e3s4, trump) {
|
|
3323
|
+
function getValueInHand(_this__u8e3s4, trump, allCards) {
|
|
3313
3324
|
var isTrump = trump.equals(_this__u8e3s4.s2k());
|
|
3314
|
-
return getValueInHand_0(_this__u8e3s4, isTrump);
|
|
3325
|
+
return getValueInHand_0(_this__u8e3s4, isTrump, allCards);
|
|
3315
3326
|
}
|
|
3316
|
-
function getValueInHand_0(_this__u8e3s4, isTrump) {
|
|
3327
|
+
function getValueInHand_0(_this__u8e3s4, isTrump, allCards) {
|
|
3317
3328
|
var minGrowth;
|
|
3318
3329
|
var maxGrowth;
|
|
3319
3330
|
var tmp0_subject = _this__u8e3s4.qg();
|
|
@@ -3799,9 +3810,6 @@
|
|
|
3799
3810
|
protoOf(GameCard).qg = function () {
|
|
3800
3811
|
return this.v2k() ? CardName_STUB_getInstance() : getName(Companion_getInstance_18(), this.r2k());
|
|
3801
3812
|
};
|
|
3802
|
-
protoOf(GameCard).c2l = function () {
|
|
3803
|
-
return !_get_isShirt__vd98rp(this) ? !this.v2k() : false;
|
|
3804
|
-
};
|
|
3805
3813
|
protoOf(GameCard).v2k = function () {
|
|
3806
3814
|
Companion_getInstance_18();
|
|
3807
3815
|
return this.a2j_1 >= 53;
|
|
@@ -3859,15 +3867,15 @@
|
|
|
3859
3867
|
return this.k2f();
|
|
3860
3868
|
});
|
|
3861
3869
|
function ProcessingCard(gameCard, payload) {
|
|
3862
|
-
this.
|
|
3863
|
-
this.
|
|
3870
|
+
this.c2l_1 = gameCard;
|
|
3871
|
+
this.d2l_1 = payload;
|
|
3864
3872
|
}
|
|
3865
3873
|
protoOf(ProcessingCard).toString = function () {
|
|
3866
|
-
return 'ProcessingCard(gameCard=' + this.
|
|
3874
|
+
return 'ProcessingCard(gameCard=' + this.c2l_1 + ', payload=' + this.d2l_1 + ')';
|
|
3867
3875
|
};
|
|
3868
3876
|
protoOf(ProcessingCard).hashCode = function () {
|
|
3869
|
-
var result = this.
|
|
3870
|
-
result = imul(result, 31) + (this.
|
|
3877
|
+
var result = this.c2l_1.hashCode();
|
|
3878
|
+
result = imul(result, 31) + (this.d2l_1 == null ? 0 : hashCode(this.d2l_1)) | 0;
|
|
3871
3879
|
return result;
|
|
3872
3880
|
};
|
|
3873
3881
|
protoOf(ProcessingCard).equals = function (other) {
|
|
@@ -3876,14 +3884,14 @@
|
|
|
3876
3884
|
if (!(other instanceof ProcessingCard))
|
|
3877
3885
|
return false;
|
|
3878
3886
|
var tmp0_other_with_cast = other instanceof ProcessingCard ? other : THROW_CCE();
|
|
3879
|
-
if (!this.
|
|
3887
|
+
if (!this.c2l_1.equals(tmp0_other_with_cast.c2l_1))
|
|
3880
3888
|
return false;
|
|
3881
|
-
if (!equals(this.
|
|
3889
|
+
if (!equals(this.d2l_1, tmp0_other_with_cast.d2l_1))
|
|
3882
3890
|
return false;
|
|
3883
3891
|
return true;
|
|
3884
3892
|
};
|
|
3885
3893
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
3886
|
-
return $this.
|
|
3894
|
+
return $this.e2l_1.j1();
|
|
3887
3895
|
}
|
|
3888
3896
|
function Suit$Companion$_anonymous__cbm2iq() {
|
|
3889
3897
|
return createSimpleEnumSerializer('com.logic.data.models.table.cards.Suit', values_3());
|
|
@@ -3919,7 +3927,7 @@
|
|
|
3919
3927
|
Companion_instance_18 = this;
|
|
3920
3928
|
var tmp = this;
|
|
3921
3929
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
3922
|
-
tmp.
|
|
3930
|
+
tmp.e2l_1 = lazy(tmp_0, Suit$Companion$_anonymous__cbm2iq);
|
|
3923
3931
|
}
|
|
3924
3932
|
protoOf(Companion_18).q1y = function () {
|
|
3925
3933
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -3994,15 +4002,15 @@
|
|
|
3994
4002
|
return tmp;
|
|
3995
4003
|
}
|
|
3996
4004
|
function _no_name_provided__qut3iv($logger) {
|
|
3997
|
-
this.
|
|
4005
|
+
this.g2l_1 = $logger;
|
|
3998
4006
|
AbstractCoroutineContextElement.call(this, Key_getInstance());
|
|
3999
4007
|
}
|
|
4000
4008
|
protoOf(_no_name_provided__qut3iv).on = function (context, exception) {
|
|
4001
|
-
return this.
|
|
4009
|
+
return this.g2l_1.e('AsyncErrorHandler', 'AsyncProvider error: ' + exception, exception);
|
|
4002
4010
|
};
|
|
4003
4011
|
function AsyncProviderImpl$launchWorkerWithLock$slambda(this$0, $block, resultContinuation) {
|
|
4004
|
-
this.
|
|
4005
|
-
this.
|
|
4012
|
+
this.p2l_1 = this$0;
|
|
4013
|
+
this.q2l_1 = $block;
|
|
4006
4014
|
CoroutineImpl.call(this, resultContinuation);
|
|
4007
4015
|
}
|
|
4008
4016
|
protoOf(AsyncProviderImpl$launchWorkerWithLock$slambda).v12 = function ($this$launch, $completion) {
|
|
@@ -4026,9 +4034,9 @@
|
|
|
4026
4034
|
continue $sm;
|
|
4027
4035
|
case 1:
|
|
4028
4036
|
var tmp_0 = this;
|
|
4029
|
-
tmp_0.
|
|
4037
|
+
tmp_0.t2l_1 = this.p2l_1.w2l_1;
|
|
4030
4038
|
this.lh_1 = 2;
|
|
4031
|
-
suspendResult = this.
|
|
4039
|
+
suspendResult = this.t2l_1.p19(null, this);
|
|
4032
4040
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4033
4041
|
return suspendResult;
|
|
4034
4042
|
}
|
|
@@ -4043,26 +4051,26 @@
|
|
|
4043
4051
|
case 4:
|
|
4044
4052
|
this.mh_1 = 9;
|
|
4045
4053
|
this.lh_1 = 5;
|
|
4046
|
-
suspendResult = this.
|
|
4054
|
+
suspendResult = this.q2l_1(this.r2l_1, this);
|
|
4047
4055
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4048
4056
|
return suspendResult;
|
|
4049
4057
|
}
|
|
4050
4058
|
|
|
4051
4059
|
continue $sm;
|
|
4052
4060
|
case 5:
|
|
4053
|
-
this.
|
|
4061
|
+
this.u2l_1 = suspendResult;
|
|
4054
4062
|
this.mh_1 = 10;
|
|
4055
4063
|
this.lh_1 = 6;
|
|
4056
4064
|
var tmp_1 = this;
|
|
4057
4065
|
continue $sm;
|
|
4058
4066
|
case 6:
|
|
4059
4067
|
var tmp_2 = this;
|
|
4060
|
-
this.
|
|
4061
|
-
tmp_2.
|
|
4068
|
+
this.t2l_1.a19(null);
|
|
4069
|
+
tmp_2.s2l_1 = Unit_getInstance();
|
|
4062
4070
|
this.lh_1 = 8;
|
|
4063
4071
|
continue $sm;
|
|
4064
4072
|
case 7:
|
|
4065
|
-
this.
|
|
4073
|
+
this.t2l_1.a19(null);
|
|
4066
4074
|
;
|
|
4067
4075
|
if (false) {
|
|
4068
4076
|
this.lh_1 = 1;
|
|
@@ -4076,7 +4084,7 @@
|
|
|
4076
4084
|
case 9:
|
|
4077
4085
|
this.mh_1 = 10;
|
|
4078
4086
|
var t = this.oh_1;
|
|
4079
|
-
this.
|
|
4087
|
+
this.t2l_1.a19(null);
|
|
4080
4088
|
;
|
|
4081
4089
|
throw t;
|
|
4082
4090
|
case 10:
|
|
@@ -4094,8 +4102,8 @@
|
|
|
4094
4102
|
while (true);
|
|
4095
4103
|
};
|
|
4096
4104
|
protoOf(AsyncProviderImpl$launchWorkerWithLock$slambda).w12 = function ($this$launch, completion) {
|
|
4097
|
-
var i = new AsyncProviderImpl$launchWorkerWithLock$slambda(this.
|
|
4098
|
-
i.
|
|
4105
|
+
var i = new AsyncProviderImpl$launchWorkerWithLock$slambda(this.p2l_1, this.q2l_1, completion);
|
|
4106
|
+
i.r2l_1 = $this$launch;
|
|
4099
4107
|
return i;
|
|
4100
4108
|
};
|
|
4101
4109
|
function AsyncProviderImpl$launchWorkerWithLock$slambda_0(this$0, $block, resultContinuation) {
|
|
@@ -4107,31 +4115,31 @@
|
|
|
4107
4115
|
return l;
|
|
4108
4116
|
}
|
|
4109
4117
|
function AsyncProviderImpl(logger) {
|
|
4110
|
-
this.
|
|
4111
|
-
this.
|
|
4118
|
+
this.v2l_1 = Job();
|
|
4119
|
+
this.w2l_1 = Mutex();
|
|
4112
4120
|
var tmp = this;
|
|
4113
4121
|
var tmp$ret$0;
|
|
4114
4122
|
// Inline function 'kotlinx.coroutines.CoroutineExceptionHandler' call
|
|
4115
4123
|
tmp$ret$0 = new _no_name_provided__qut3iv(logger);
|
|
4116
|
-
tmp.
|
|
4117
|
-
this.
|
|
4118
|
-
this.
|
|
4124
|
+
tmp.x2l_1 = tmp$ret$0;
|
|
4125
|
+
this.y2l_1 = CoroutineScope_0(Dispatchers_getInstance().kr().e5(this.v2l_1));
|
|
4126
|
+
this.z2l_1 = CoroutineScope_0(Dispatchers_getInstance().gr_1.e5(this.v2l_1));
|
|
4119
4127
|
}
|
|
4120
|
-
protoOf(AsyncProviderImpl).
|
|
4121
|
-
return this.
|
|
4128
|
+
protoOf(AsyncProviderImpl).a2m = function () {
|
|
4129
|
+
return this.x2l_1;
|
|
4122
4130
|
};
|
|
4123
|
-
protoOf(AsyncProviderImpl).
|
|
4124
|
-
return launch(this.
|
|
4131
|
+
protoOf(AsyncProviderImpl).b2m = function (context, block) {
|
|
4132
|
+
return launch(this.y2l_1, context, VOID, block);
|
|
4125
4133
|
};
|
|
4126
|
-
protoOf(AsyncProviderImpl).
|
|
4127
|
-
return launch(this.
|
|
4134
|
+
protoOf(AsyncProviderImpl).d2m = function (context, block) {
|
|
4135
|
+
return launch(this.z2l_1, context, VOID, block);
|
|
4128
4136
|
};
|
|
4129
|
-
protoOf(AsyncProviderImpl).
|
|
4130
|
-
return launch(this.
|
|
4137
|
+
protoOf(AsyncProviderImpl).f2m = function (context, block) {
|
|
4138
|
+
return launch(this.z2l_1, context, VOID, AsyncProviderImpl$launchWorkerWithLock$slambda_0(this, block, null));
|
|
4131
4139
|
};
|
|
4132
4140
|
protoOf(AsyncProviderImpl).el = function () {
|
|
4133
|
-
if (!this.
|
|
4134
|
-
this.
|
|
4141
|
+
if (!this.v2l_1.cq()) {
|
|
4142
|
+
this.v2l_1.dk();
|
|
4135
4143
|
}
|
|
4136
4144
|
};
|
|
4137
4145
|
function AsyncProvider() {
|
|
@@ -4139,7 +4147,7 @@
|
|
|
4139
4147
|
function UUIDIdsProvider() {
|
|
4140
4148
|
UUIDIdsProvider_instance = this;
|
|
4141
4149
|
}
|
|
4142
|
-
protoOf(UUIDIdsProvider).
|
|
4150
|
+
protoOf(UUIDIdsProvider).h2m = function () {
|
|
4143
4151
|
return uuid4().toString();
|
|
4144
4152
|
};
|
|
4145
4153
|
var UUIDIdsProvider_instance;
|
|
@@ -4151,37 +4159,37 @@
|
|
|
4151
4159
|
function IdsProvider() {
|
|
4152
4160
|
}
|
|
4153
4161
|
function JobsProviderImpl(logger) {
|
|
4154
|
-
this.
|
|
4162
|
+
this.i2m_1 = logger;
|
|
4155
4163
|
var tmp = this;
|
|
4156
4164
|
var tmp$ret$0;
|
|
4157
4165
|
// Inline function 'kotlin.collections.hashMapOf' call
|
|
4158
4166
|
tmp$ret$0 = HashMap_init_$Create$();
|
|
4159
|
-
tmp.
|
|
4167
|
+
tmp.j2m_1 = tmp$ret$0;
|
|
4160
4168
|
}
|
|
4161
|
-
protoOf(JobsProviderImpl).
|
|
4162
|
-
if (this.
|
|
4163
|
-
this.
|
|
4169
|
+
protoOf(JobsProviderImpl).k2m = function (timerTag, job) {
|
|
4170
|
+
if (this.l2m(timerTag)) {
|
|
4171
|
+
this.i2m_1.w(VOID, 'Timer already exists for that tag: ' + timerTag);
|
|
4164
4172
|
}
|
|
4165
4173
|
// Inline function 'kotlin.collections.set' call
|
|
4166
|
-
var tmp0_set = this.
|
|
4174
|
+
var tmp0_set = this.j2m_1;
|
|
4167
4175
|
tmp0_set.v3(timerTag, job);
|
|
4168
4176
|
};
|
|
4169
|
-
protoOf(JobsProviderImpl).
|
|
4170
|
-
return this.
|
|
4177
|
+
protoOf(JobsProviderImpl).l2m = function (timerTag) {
|
|
4178
|
+
return this.j2m_1.q1(timerTag);
|
|
4171
4179
|
};
|
|
4172
|
-
protoOf(JobsProviderImpl).
|
|
4173
|
-
if (!this.
|
|
4174
|
-
this.
|
|
4180
|
+
protoOf(JobsProviderImpl).m2m = function (timerTag) {
|
|
4181
|
+
if (!this.l2m(timerTag)) {
|
|
4182
|
+
this.i2m_1.w(VOID, "Can't find timer for that tag: " + timerTag);
|
|
4175
4183
|
}
|
|
4176
|
-
this.
|
|
4184
|
+
this.j2m_1.jc(timerTag);
|
|
4177
4185
|
};
|
|
4178
|
-
protoOf(JobsProviderImpl).
|
|
4186
|
+
protoOf(JobsProviderImpl).n2m = function (timers) {
|
|
4179
4187
|
// Inline function 'kotlin.collections.forEach' call
|
|
4180
4188
|
var tmp0_iterator = timers.f();
|
|
4181
4189
|
while (tmp0_iterator.g()) {
|
|
4182
4190
|
var element = tmp0_iterator.h();
|
|
4183
4191
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.cancelJobs.<anonymous>' call
|
|
4184
|
-
var timer = this.
|
|
4192
|
+
var timer = this.j2m_1.t1(element);
|
|
4185
4193
|
var tmp0_safe_receiver = timer;
|
|
4186
4194
|
if (tmp0_safe_receiver == null)
|
|
4187
4195
|
null;
|
|
@@ -4189,11 +4197,11 @@
|
|
|
4189
4197
|
tmp0_safe_receiver.dk();
|
|
4190
4198
|
}
|
|
4191
4199
|
}
|
|
4192
|
-
this.
|
|
4200
|
+
this.j2m_1.u1().q2(toSet(timers));
|
|
4193
4201
|
};
|
|
4194
|
-
protoOf(JobsProviderImpl).
|
|
4195
|
-
var timer = this.
|
|
4196
|
-
this.
|
|
4202
|
+
protoOf(JobsProviderImpl).o2m = function (timerTag) {
|
|
4203
|
+
var timer = this.j2m_1.t1(timerTag);
|
|
4204
|
+
this.j2m_1.jc(timerTag);
|
|
4197
4205
|
var tmp0_safe_receiver = timer;
|
|
4198
4206
|
if (tmp0_safe_receiver == null)
|
|
4199
4207
|
null;
|
|
@@ -4347,7 +4355,7 @@
|
|
|
4347
4355
|
}
|
|
4348
4356
|
function createStore$dispatch(currentState, currentReducer, $logger, stateTrigger, action) {
|
|
4349
4357
|
try {
|
|
4350
|
-
currentState._v = currentReducer._v.
|
|
4358
|
+
currentState._v = currentReducer._v.p2m(currentState._v, action);
|
|
4351
4359
|
} catch ($p) {
|
|
4352
4360
|
if ($p instanceof Exception) {
|
|
4353
4361
|
var exception = $p;
|
|
@@ -4368,18 +4376,18 @@
|
|
|
4368
4376
|
};
|
|
4369
4377
|
}
|
|
4370
4378
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug($collector, this$0, resultContinuation) {
|
|
4371
|
-
this.
|
|
4372
|
-
this.
|
|
4379
|
+
this.y2m_1 = $collector;
|
|
4380
|
+
this.z2m_1 = this$0;
|
|
4373
4381
|
CoroutineImpl.call(this, resultContinuation);
|
|
4374
4382
|
}
|
|
4375
|
-
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).
|
|
4376
|
-
var tmp = this.
|
|
4383
|
+
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).b2n = function (value, $completion) {
|
|
4384
|
+
var tmp = this.c2n(value, $completion);
|
|
4377
4385
|
tmp.nh_1 = Unit_getInstance();
|
|
4378
4386
|
tmp.oh_1 = null;
|
|
4379
4387
|
return tmp.uh();
|
|
4380
4388
|
};
|
|
4381
4389
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).gi = function (p1, $completion) {
|
|
4382
|
-
return this.
|
|
4390
|
+
return this.b2n(p1 instanceof Unit ? p1 : THROW_CCE(), $completion);
|
|
4383
4391
|
};
|
|
4384
4392
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).uh = function () {
|
|
4385
4393
|
var suspendResult = this.nh_1;
|
|
@@ -4390,7 +4398,7 @@
|
|
|
4390
4398
|
case 0:
|
|
4391
4399
|
this.mh_1 = 2;
|
|
4392
4400
|
this.lh_1 = 1;
|
|
4393
|
-
suspendResult = this.
|
|
4401
|
+
suspendResult = this.y2m_1.yx(this.z2m_1.pj(), this);
|
|
4394
4402
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4395
4403
|
return suspendResult;
|
|
4396
4404
|
}
|
|
@@ -4412,23 +4420,23 @@
|
|
|
4412
4420
|
}
|
|
4413
4421
|
while (true);
|
|
4414
4422
|
};
|
|
4415
|
-
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).
|
|
4416
|
-
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.
|
|
4417
|
-
i.
|
|
4423
|
+
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).c2n = function (value, completion) {
|
|
4424
|
+
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.y2m_1, this.z2m_1, completion);
|
|
4425
|
+
i.a2n_1 = value;
|
|
4418
4426
|
return i;
|
|
4419
4427
|
};
|
|
4420
4428
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug_0($collector, this$0, resultContinuation) {
|
|
4421
4429
|
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug($collector, this$0, resultContinuation);
|
|
4422
4430
|
var l = function (value, $completion) {
|
|
4423
|
-
return i.
|
|
4431
|
+
return i.b2n(value, $completion);
|
|
4424
4432
|
};
|
|
4425
4433
|
l.$arity = 1;
|
|
4426
4434
|
return l;
|
|
4427
4435
|
}
|
|
4428
4436
|
function $collectCOROUTINE$0(_this__u8e3s4, collector, resultContinuation) {
|
|
4429
4437
|
CoroutineImpl.call(this, resultContinuation);
|
|
4430
|
-
this.
|
|
4431
|
-
this.
|
|
4438
|
+
this.q2n_1 = _this__u8e3s4;
|
|
4439
|
+
this.r2n_1 = collector;
|
|
4432
4440
|
}
|
|
4433
4441
|
protoOf($collectCOROUTINE$0).uh = function () {
|
|
4434
4442
|
var suspendResult = this.nh_1;
|
|
@@ -4439,8 +4447,8 @@
|
|
|
4439
4447
|
case 0:
|
|
4440
4448
|
this.mh_1 = 2;
|
|
4441
4449
|
this.lh_1 = 1;
|
|
4442
|
-
var tmp_0 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.
|
|
4443
|
-
suspendResult = this.
|
|
4450
|
+
var tmp_0 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.r2n_1, this.q2n_1.t2n_1, null);
|
|
4451
|
+
suspendResult = this.q2n_1.s2n_1.rz(new sam$kotlinx_coroutines_flow_FlowCollector$0(tmp_0), this);
|
|
4444
4452
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4445
4453
|
return suspendResult;
|
|
4446
4454
|
}
|
|
@@ -4463,10 +4471,10 @@
|
|
|
4463
4471
|
while (true);
|
|
4464
4472
|
};
|
|
4465
4473
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
4466
|
-
this.
|
|
4474
|
+
this.u2n_1 = function_0;
|
|
4467
4475
|
}
|
|
4468
4476
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).yx = function (value, $completion) {
|
|
4469
|
-
var tmp0 = this.
|
|
4477
|
+
var tmp0 = this.u2n_1(value, $completion);
|
|
4470
4478
|
return tmp0;
|
|
4471
4479
|
};
|
|
4472
4480
|
function createStore$o$dispatch$lambda($currentState, $currentReducer, $logger, $stateTrigger) {
|
|
@@ -4482,70 +4490,70 @@
|
|
|
4482
4490
|
};
|
|
4483
4491
|
}
|
|
4484
4492
|
function _no_name_provided__qut3iv_0($stateTrigger, this$0) {
|
|
4485
|
-
this.
|
|
4486
|
-
this.
|
|
4493
|
+
this.s2n_1 = $stateTrigger;
|
|
4494
|
+
this.t2n_1 = this$0;
|
|
4487
4495
|
}
|
|
4488
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
4496
|
+
protoOf(_no_name_provided__qut3iv_0).v2n = function (collector, $completion) {
|
|
4489
4497
|
var tmp = new $collectCOROUTINE$0(this, collector, $completion);
|
|
4490
4498
|
tmp.nh_1 = Unit_getInstance();
|
|
4491
4499
|
tmp.oh_1 = null;
|
|
4492
4500
|
return tmp.uh();
|
|
4493
4501
|
};
|
|
4494
4502
|
protoOf(_no_name_provided__qut3iv_0).rz = function (collector, $completion) {
|
|
4495
|
-
return this.
|
|
4503
|
+
return this.v2n(collector, $completion);
|
|
4496
4504
|
};
|
|
4497
4505
|
function createStore$2($currentState, $currentReducer, $logger, $stateTrigger) {
|
|
4498
|
-
this.
|
|
4499
|
-
this.
|
|
4500
|
-
this.
|
|
4506
|
+
this.g2n_1 = $currentState;
|
|
4507
|
+
this.h2n_1 = $stateTrigger;
|
|
4508
|
+
this.d2n_1 = this;
|
|
4501
4509
|
var tmp = this;
|
|
4502
|
-
tmp.
|
|
4510
|
+
tmp.e2n_1 = createStore$o$dispatch$lambda($currentState, $currentReducer, $logger, $stateTrigger);
|
|
4503
4511
|
var tmp_0 = this;
|
|
4504
|
-
tmp_0.
|
|
4512
|
+
tmp_0.f2n_1 = createStore$o$replaceReducer$lambda($currentReducer, $currentState, $logger, $stateTrigger);
|
|
4505
4513
|
}
|
|
4506
|
-
protoOf(createStore$2).
|
|
4507
|
-
return this.
|
|
4514
|
+
protoOf(createStore$2).w2n = function () {
|
|
4515
|
+
return this.d2n_1;
|
|
4508
4516
|
};
|
|
4509
4517
|
protoOf(createStore$2).pj = function () {
|
|
4510
|
-
return createStore$getState(this.
|
|
4518
|
+
return createStore$getState(this.g2n_1);
|
|
4511
4519
|
};
|
|
4512
|
-
protoOf(createStore$2).
|
|
4513
|
-
this.
|
|
4520
|
+
protoOf(createStore$2).x2n = function (_set____db54di) {
|
|
4521
|
+
this.e2n_1 = _set____db54di;
|
|
4522
|
+
};
|
|
4523
|
+
protoOf(createStore$2).y2n = function () {
|
|
4524
|
+
return this.e2n_1;
|
|
4514
4525
|
};
|
|
4515
4526
|
protoOf(createStore$2).z2n = function () {
|
|
4516
4527
|
return this.f2n_1;
|
|
4517
4528
|
};
|
|
4518
4529
|
protoOf(createStore$2).a2o = function () {
|
|
4519
|
-
return this.g2n_1;
|
|
4520
|
-
};
|
|
4521
|
-
protoOf(createStore$2).b2o = function () {
|
|
4522
4530
|
var tmp$ret$2;
|
|
4523
4531
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
4524
4532
|
var tmp$ret$1;
|
|
4525
4533
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
4526
4534
|
var tmp$ret$0;
|
|
4527
4535
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
4528
|
-
tmp$ret$0 = new _no_name_provided__qut3iv_0(this.
|
|
4536
|
+
tmp$ret$0 = new _no_name_provided__qut3iv_0(this.h2n_1, this);
|
|
4529
4537
|
tmp$ret$1 = tmp$ret$0;
|
|
4530
4538
|
tmp$ret$2 = tmp$ret$1;
|
|
4531
4539
|
return tmp$ret$2;
|
|
4532
4540
|
};
|
|
4533
4541
|
defineProp(protoOf(createStore$2), 'store', function () {
|
|
4534
|
-
return this.
|
|
4542
|
+
return this.w2n();
|
|
4535
4543
|
});
|
|
4536
4544
|
defineProp(protoOf(createStore$2), 'state', function () {
|
|
4537
4545
|
return this.pj();
|
|
4538
4546
|
});
|
|
4539
4547
|
defineProp(protoOf(createStore$2), 'dispatch', function () {
|
|
4540
|
-
return this.
|
|
4548
|
+
return this.y2n();
|
|
4541
4549
|
}, function (value) {
|
|
4542
|
-
this.
|
|
4550
|
+
this.x2n(value);
|
|
4543
4551
|
});
|
|
4544
4552
|
defineProp(protoOf(createStore$2), 'replaceReducer', function () {
|
|
4545
|
-
return this.
|
|
4553
|
+
return this.z2n();
|
|
4546
4554
|
});
|
|
4547
4555
|
defineProp(protoOf(createStore$2), 'observe', function () {
|
|
4548
|
-
return this.
|
|
4556
|
+
return this.a2o();
|
|
4549
4557
|
});
|
|
4550
4558
|
function INIT() {
|
|
4551
4559
|
INIT_instance = this;
|
|
@@ -4602,10 +4610,10 @@
|
|
|
4602
4610
|
return new middleware$1(dispatch);
|
|
4603
4611
|
}
|
|
4604
4612
|
function middleware$1($dispatch) {
|
|
4605
|
-
this.
|
|
4613
|
+
this.d2o_1 = $dispatch;
|
|
4606
4614
|
}
|
|
4607
|
-
protoOf(middleware$1).
|
|
4608
|
-
this.
|
|
4615
|
+
protoOf(middleware$1).c2o = function (store, next, action) {
|
|
4616
|
+
this.d2o_1(store, next, action);
|
|
4609
4617
|
};
|
|
4610
4618
|
function Reducer() {
|
|
4611
4619
|
}
|
|
@@ -4613,9 +4621,9 @@
|
|
|
4613
4621
|
return new combineReducers$1(reducers);
|
|
4614
4622
|
}
|
|
4615
4623
|
function combineReducers$1($reducers) {
|
|
4616
|
-
this.
|
|
4624
|
+
this.e2o_1 = $reducers;
|
|
4617
4625
|
}
|
|
4618
|
-
protoOf(combineReducers$1).
|
|
4626
|
+
protoOf(combineReducers$1).f2o = function (state, action) {
|
|
4619
4627
|
var tmp$ret$4;
|
|
4620
4628
|
// Inline function 'kotlin.collections.fold' call
|
|
4621
4629
|
var tmp$ret$2;
|
|
@@ -4623,7 +4631,7 @@
|
|
|
4623
4631
|
var tmp$ret$1;
|
|
4624
4632
|
// Inline function 'kotlin.collections.filterTo' call
|
|
4625
4633
|
var tmp0_filterTo = ArrayList_init_$Create$();
|
|
4626
|
-
var indexedObject = this.
|
|
4634
|
+
var indexedObject = this.e2o_1;
|
|
4627
4635
|
var inductionVariable = 0;
|
|
4628
4636
|
var last = indexedObject.length;
|
|
4629
4637
|
while (inductionVariable < last) {
|
|
@@ -4631,7 +4639,7 @@
|
|
|
4631
4639
|
inductionVariable = inductionVariable + 1 | 0;
|
|
4632
4640
|
var tmp$ret$0;
|
|
4633
4641
|
// Inline function 'com.logic.domain.engine.definitions.<no name provided>.reduce.<anonymous>' call
|
|
4634
|
-
tmp$ret$0 = element.
|
|
4642
|
+
tmp$ret$0 = element.b2o(action);
|
|
4635
4643
|
if (tmp$ret$0) {
|
|
4636
4644
|
tmp0_filterTo.a(element);
|
|
4637
4645
|
}
|
|
@@ -4646,14 +4654,14 @@
|
|
|
4646
4654
|
var tmp$ret$3;
|
|
4647
4655
|
// Inline function 'com.logic.domain.engine.definitions.<no name provided>.reduce.<anonymous>' call
|
|
4648
4656
|
var tmp2__anonymous__z9zvc9 = accumulator;
|
|
4649
|
-
tmp$ret$3 = element_0.
|
|
4657
|
+
tmp$ret$3 = element_0.p2m(tmp2__anonymous__z9zvc9, action);
|
|
4650
4658
|
accumulator = tmp$ret$3;
|
|
4651
4659
|
}
|
|
4652
4660
|
tmp$ret$4 = accumulator;
|
|
4653
4661
|
return tmp$ret$4;
|
|
4654
4662
|
};
|
|
4655
|
-
protoOf(combineReducers$1).
|
|
4656
|
-
return this.
|
|
4663
|
+
protoOf(combineReducers$1).p2m = function (state, action) {
|
|
4664
|
+
return this.f2o((state == null ? true : isObject(state)) ? state : THROW_CCE(), action);
|
|
4657
4665
|
};
|
|
4658
4666
|
function Store() {
|
|
4659
4667
|
}
|
|
@@ -4667,22 +4675,22 @@
|
|
|
4667
4675
|
initialDelay = initialDelay === VOID ? new Long(0, 0) : initialDelay;
|
|
4668
4676
|
type = type === VOID ? TimerType_DELAY_getInstance() : type;
|
|
4669
4677
|
TimerAction.call(this);
|
|
4670
|
-
this.
|
|
4671
|
-
this.
|
|
4672
|
-
this.
|
|
4673
|
-
this.
|
|
4678
|
+
this.k2o_1 = timerTag;
|
|
4679
|
+
this.l2o_1 = delayMillis;
|
|
4680
|
+
this.m2o_1 = initialDelay;
|
|
4681
|
+
this.n2o_1 = type;
|
|
4674
4682
|
}
|
|
4675
|
-
protoOf(StartTimerAction).
|
|
4676
|
-
return this.
|
|
4683
|
+
protoOf(StartTimerAction).o2o = function () {
|
|
4684
|
+
return this.k2o_1;
|
|
4677
4685
|
};
|
|
4678
4686
|
protoOf(StartTimerAction).toString = function () {
|
|
4679
|
-
return 'StartTimerAction(timerTag=' + this.
|
|
4687
|
+
return 'StartTimerAction(timerTag=' + this.k2o_1 + ', delayMillis=' + toString_0(this.l2o_1) + ', initialDelay=' + toString_0(this.m2o_1) + ', type=' + this.n2o_1 + ')';
|
|
4680
4688
|
};
|
|
4681
4689
|
protoOf(StartTimerAction).hashCode = function () {
|
|
4682
|
-
var result = hashCode(this.
|
|
4690
|
+
var result = hashCode(this.k2o_1);
|
|
4691
|
+
result = imul(result, 31) + this.l2o_1.hashCode() | 0;
|
|
4683
4692
|
result = imul(result, 31) + this.m2o_1.hashCode() | 0;
|
|
4684
4693
|
result = imul(result, 31) + this.n2o_1.hashCode() | 0;
|
|
4685
|
-
result = imul(result, 31) + this.o2o_1.hashCode() | 0;
|
|
4686
4694
|
return result;
|
|
4687
4695
|
};
|
|
4688
4696
|
protoOf(StartTimerAction).equals = function (other) {
|
|
@@ -4691,14 +4699,14 @@
|
|
|
4691
4699
|
if (!(other instanceof StartTimerAction))
|
|
4692
4700
|
return false;
|
|
4693
4701
|
var tmp0_other_with_cast = other instanceof StartTimerAction ? other : THROW_CCE();
|
|
4694
|
-
if (!equals(this.
|
|
4702
|
+
if (!equals(this.k2o_1, tmp0_other_with_cast.k2o_1))
|
|
4703
|
+
return false;
|
|
4704
|
+
if (!this.l2o_1.equals(tmp0_other_with_cast.l2o_1))
|
|
4695
4705
|
return false;
|
|
4696
4706
|
if (!this.m2o_1.equals(tmp0_other_with_cast.m2o_1))
|
|
4697
4707
|
return false;
|
|
4698
4708
|
if (!this.n2o_1.equals(tmp0_other_with_cast.n2o_1))
|
|
4699
4709
|
return false;
|
|
4700
|
-
if (!this.o2o_1.equals(tmp0_other_with_cast.o2o_1))
|
|
4701
|
-
return false;
|
|
4702
4710
|
return true;
|
|
4703
4711
|
};
|
|
4704
4712
|
defineProp(protoOf(StartTimerAction), 'actionTag', function () {
|
|
@@ -4719,21 +4727,21 @@
|
|
|
4719
4727
|
}
|
|
4720
4728
|
function TimerTickAction(timerTag, type) {
|
|
4721
4729
|
TimerAction.call(this);
|
|
4722
|
-
this.
|
|
4723
|
-
this.
|
|
4730
|
+
this.p2o_1 = timerTag;
|
|
4731
|
+
this.q2o_1 = type;
|
|
4724
4732
|
}
|
|
4725
|
-
protoOf(TimerTickAction).
|
|
4726
|
-
return this.
|
|
4733
|
+
protoOf(TimerTickAction).o2o = function () {
|
|
4734
|
+
return this.p2o_1;
|
|
4727
4735
|
};
|
|
4728
4736
|
protoOf(TimerTickAction).notValidateWhenFinished = function () {
|
|
4729
|
-
return this.
|
|
4737
|
+
return this.p2o_1.notValidateWhenFinished();
|
|
4730
4738
|
};
|
|
4731
4739
|
protoOf(TimerTickAction).toString = function () {
|
|
4732
|
-
return 'TimerTickAction(timerTag=' + this.
|
|
4740
|
+
return 'TimerTickAction(timerTag=' + this.p2o_1 + ', type=' + this.q2o_1 + ')';
|
|
4733
4741
|
};
|
|
4734
4742
|
protoOf(TimerTickAction).hashCode = function () {
|
|
4735
|
-
var result = hashCode(this.
|
|
4736
|
-
result = imul(result, 31) + this.
|
|
4743
|
+
var result = hashCode(this.p2o_1);
|
|
4744
|
+
result = imul(result, 31) + this.q2o_1.hashCode() | 0;
|
|
4737
4745
|
return result;
|
|
4738
4746
|
};
|
|
4739
4747
|
protoOf(TimerTickAction).equals = function (other) {
|
|
@@ -4742,9 +4750,9 @@
|
|
|
4742
4750
|
if (!(other instanceof TimerTickAction))
|
|
4743
4751
|
return false;
|
|
4744
4752
|
var tmp0_other_with_cast = other instanceof TimerTickAction ? other : THROW_CCE();
|
|
4745
|
-
if (!equals(this.
|
|
4753
|
+
if (!equals(this.p2o_1, tmp0_other_with_cast.p2o_1))
|
|
4746
4754
|
return false;
|
|
4747
|
-
if (!this.
|
|
4755
|
+
if (!this.q2o_1.equals(tmp0_other_with_cast.q2o_1))
|
|
4748
4756
|
return false;
|
|
4749
4757
|
return true;
|
|
4750
4758
|
};
|
|
@@ -4753,16 +4761,16 @@
|
|
|
4753
4761
|
});
|
|
4754
4762
|
function StopTimerAction(timerTag) {
|
|
4755
4763
|
TimerAction.call(this);
|
|
4756
|
-
this.
|
|
4764
|
+
this.r2o_1 = timerTag;
|
|
4757
4765
|
}
|
|
4758
|
-
protoOf(StopTimerAction).
|
|
4759
|
-
return this.
|
|
4766
|
+
protoOf(StopTimerAction).o2o = function () {
|
|
4767
|
+
return this.r2o_1;
|
|
4760
4768
|
};
|
|
4761
4769
|
protoOf(StopTimerAction).toString = function () {
|
|
4762
|
-
return 'StopTimerAction(timerTag=' + this.
|
|
4770
|
+
return 'StopTimerAction(timerTag=' + this.r2o_1 + ')';
|
|
4763
4771
|
};
|
|
4764
4772
|
protoOf(StopTimerAction).hashCode = function () {
|
|
4765
|
-
return hashCode(this.
|
|
4773
|
+
return hashCode(this.r2o_1);
|
|
4766
4774
|
};
|
|
4767
4775
|
protoOf(StopTimerAction).equals = function (other) {
|
|
4768
4776
|
if (this === other)
|
|
@@ -4770,7 +4778,7 @@
|
|
|
4770
4778
|
if (!(other instanceof StopTimerAction))
|
|
4771
4779
|
return false;
|
|
4772
4780
|
var tmp0_other_with_cast = other instanceof StopTimerAction ? other : THROW_CCE();
|
|
4773
|
-
if (!equals(this.
|
|
4781
|
+
if (!equals(this.r2o_1, tmp0_other_with_cast.r2o_1))
|
|
4774
4782
|
return false;
|
|
4775
4783
|
return true;
|
|
4776
4784
|
};
|
|
@@ -4834,7 +4842,7 @@
|
|
|
4834
4842
|
}
|
|
4835
4843
|
function applyMiddleware$lambda$lambda$lambda$lambda($tmp1__anonymous__6ijp4k, $store, $tmp2__anonymous__bd8cc3) {
|
|
4836
4844
|
return function (action) {
|
|
4837
|
-
$tmp1__anonymous__6ijp4k.
|
|
4845
|
+
$tmp1__anonymous__6ijp4k.c2o($store, $tmp2__anonymous__bd8cc3, action);
|
|
4838
4846
|
return Unit_getInstance();
|
|
4839
4847
|
};
|
|
4840
4848
|
}
|
|
@@ -4853,7 +4861,7 @@
|
|
|
4853
4861
|
inductionVariable = inductionVariable + 1 | 0;
|
|
4854
4862
|
var tmp$ret$0;
|
|
4855
4863
|
// Inline function 'com.logic.redux.enhancers.applyMiddleware.<anonymous>.<anonymous>.<anonymous>.<anonymous>' call
|
|
4856
|
-
tmp$ret$0 = element.
|
|
4864
|
+
tmp$ret$0 = element.b2o(action);
|
|
4857
4865
|
if (tmp$ret$0) {
|
|
4858
4866
|
tmp0_filterTo.a(element);
|
|
4859
4867
|
}
|
|
@@ -4901,9 +4909,9 @@
|
|
|
4901
4909
|
return tmp$ret$0;
|
|
4902
4910
|
}
|
|
4903
4911
|
function timerMiddleware$o$handle$slambda$slambda($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
4904
|
-
this.
|
|
4905
|
-
this.
|
|
4906
|
-
this.
|
|
4912
|
+
this.a2p_1 = $jobsProvider;
|
|
4913
|
+
this.b2p_1 = $tmp0__anonymous__1nv1x1;
|
|
4914
|
+
this.c2p_1 = $store;
|
|
4907
4915
|
CoroutineImpl.call(this, resultContinuation);
|
|
4908
4916
|
}
|
|
4909
4917
|
protoOf(timerMiddleware$o$handle$slambda$slambda).v12 = function ($this$launchStore, $completion) {
|
|
@@ -4922,8 +4930,8 @@
|
|
|
4922
4930
|
var tmp = this.lh_1;
|
|
4923
4931
|
if (tmp === 0) {
|
|
4924
4932
|
this.mh_1 = 1;
|
|
4925
|
-
if (this.
|
|
4926
|
-
this.
|
|
4933
|
+
if (this.a2p_1.l2m(this.b2p_1.o2o())) {
|
|
4934
|
+
this.c2p_1.dispatch(new TimerTickAction(this.b2p_1.o2o(), TimerType_DELAY_getInstance()));
|
|
4927
4935
|
}
|
|
4928
4936
|
return Unit_getInstance();
|
|
4929
4937
|
} else if (tmp === 1) {
|
|
@@ -4936,8 +4944,8 @@
|
|
|
4936
4944
|
while (true);
|
|
4937
4945
|
};
|
|
4938
4946
|
protoOf(timerMiddleware$o$handle$slambda$slambda).w12 = function ($this$launchStore, completion) {
|
|
4939
|
-
var i = new timerMiddleware$o$handle$slambda$slambda(this.
|
|
4940
|
-
i.
|
|
4947
|
+
var i = new timerMiddleware$o$handle$slambda$slambda(this.a2p_1, this.b2p_1, this.c2p_1, completion);
|
|
4948
|
+
i.d2p_1 = $this$launchStore;
|
|
4941
4949
|
return i;
|
|
4942
4950
|
};
|
|
4943
4951
|
function timerMiddleware$o$handle$slambda$slambda_0($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
@@ -4949,9 +4957,9 @@
|
|
|
4949
4957
|
return l;
|
|
4950
4958
|
}
|
|
4951
4959
|
function timerMiddleware$o$handle$slambda$slambda_1($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
4952
|
-
this.
|
|
4953
|
-
this.
|
|
4954
|
-
this.
|
|
4960
|
+
this.m2p_1 = $jobsProvider;
|
|
4961
|
+
this.n2p_1 = $tmp0__anonymous__1nv1x1;
|
|
4962
|
+
this.o2p_1 = $store;
|
|
4955
4963
|
CoroutineImpl.call(this, resultContinuation);
|
|
4956
4964
|
}
|
|
4957
4965
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).v12 = function ($this$launchStore, $completion) {
|
|
@@ -4970,8 +4978,8 @@
|
|
|
4970
4978
|
var tmp = this.lh_1;
|
|
4971
4979
|
if (tmp === 0) {
|
|
4972
4980
|
this.mh_1 = 1;
|
|
4973
|
-
if (this.
|
|
4974
|
-
this.
|
|
4981
|
+
if (this.m2p_1.l2m(this.n2p_1.o2o())) {
|
|
4982
|
+
this.o2p_1.dispatch(new TimerTickAction(this.n2p_1.o2o(), TimerType_INTERVAL_getInstance()));
|
|
4975
4983
|
}
|
|
4976
4984
|
return Unit_getInstance();
|
|
4977
4985
|
} else if (tmp === 1) {
|
|
@@ -4984,8 +4992,8 @@
|
|
|
4984
4992
|
while (true);
|
|
4985
4993
|
};
|
|
4986
4994
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).w12 = function ($this$launchStore, completion) {
|
|
4987
|
-
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.
|
|
4988
|
-
i.
|
|
4995
|
+
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.m2p_1, this.n2p_1, this.o2p_1, completion);
|
|
4996
|
+
i.p2p_1 = $this$launchStore;
|
|
4989
4997
|
return i;
|
|
4990
4998
|
};
|
|
4991
4999
|
function timerMiddleware$o$handle$slambda$slambda_2($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
@@ -4997,10 +5005,10 @@
|
|
|
4997
5005
|
return l;
|
|
4998
5006
|
}
|
|
4999
5007
|
function timerMiddleware$o$handle$slambda($tmp0__anonymous__1nv1x1, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
5000
|
-
this.
|
|
5001
|
-
this.
|
|
5002
|
-
this.
|
|
5003
|
-
this.
|
|
5008
|
+
this.y2p_1 = $tmp0__anonymous__1nv1x1;
|
|
5009
|
+
this.z2p_1 = $asyncProvider;
|
|
5010
|
+
this.a2q_1 = $jobsProvider;
|
|
5011
|
+
this.b2q_1 = $store;
|
|
5004
5012
|
CoroutineImpl.call(this, resultContinuation);
|
|
5005
5013
|
}
|
|
5006
5014
|
protoOf(timerMiddleware$o$handle$slambda).v12 = function ($this$launchWorker, $completion) {
|
|
@@ -5020,9 +5028,9 @@
|
|
|
5020
5028
|
switch (tmp) {
|
|
5021
5029
|
case 0:
|
|
5022
5030
|
this.mh_1 = 10;
|
|
5023
|
-
if (!this.
|
|
5031
|
+
if (!this.y2p_1.m2o_1.equals(new Long(0, 0)) ? this.y2p_1.n2o_1.equals(TimerType_INTERVAL_getInstance()) : false) {
|
|
5024
5032
|
this.lh_1 = 1;
|
|
5025
|
-
suspendResult = delay(this.
|
|
5033
|
+
suspendResult = delay(this.y2p_1.m2o_1, this);
|
|
5026
5034
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5027
5035
|
return suspendResult;
|
|
5028
5036
|
}
|
|
@@ -5037,20 +5045,20 @@
|
|
|
5037
5045
|
this.lh_1 = 2;
|
|
5038
5046
|
continue $sm;
|
|
5039
5047
|
case 2:
|
|
5040
|
-
this.
|
|
5041
|
-
this.
|
|
5042
|
-
if (this.
|
|
5048
|
+
this.d2q_1 = this.y2p_1.n2o_1;
|
|
5049
|
+
this.e2q_1 = this.d2q_1.k5_1;
|
|
5050
|
+
if (this.e2q_1 === 0) {
|
|
5043
5051
|
this.lh_1 = 8;
|
|
5044
|
-
suspendResult = delay(this.
|
|
5052
|
+
suspendResult = delay(this.y2p_1.l2o_1, this);
|
|
5045
5053
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5046
5054
|
return suspendResult;
|
|
5047
5055
|
}
|
|
5048
5056
|
continue $sm;
|
|
5049
5057
|
} else {
|
|
5050
|
-
if (this.
|
|
5051
|
-
if (!this.
|
|
5058
|
+
if (this.e2q_1 === 1) {
|
|
5059
|
+
if (!this.y2p_1.m2o_1.equals(new Long(0, 0))) {
|
|
5052
5060
|
this.lh_1 = 3;
|
|
5053
|
-
suspendResult = delay(this.
|
|
5061
|
+
suspendResult = delay(this.y2p_1.m2o_1, this);
|
|
5054
5062
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5055
5063
|
return suspendResult;
|
|
5056
5064
|
}
|
|
@@ -5073,15 +5081,15 @@
|
|
|
5073
5081
|
this.lh_1 = 5;
|
|
5074
5082
|
continue $sm;
|
|
5075
5083
|
case 5:
|
|
5076
|
-
if (!get_isActive(this.
|
|
5084
|
+
if (!get_isActive(this.c2q_1)) {
|
|
5077
5085
|
this.lh_1 = 7;
|
|
5078
5086
|
continue $sm;
|
|
5079
5087
|
}
|
|
5080
5088
|
|
|
5081
|
-
this.
|
|
5089
|
+
this.z2p_1.c2m(VOID, timerMiddleware$o$handle$slambda$slambda_2(this.a2q_1, this.y2p_1, this.b2q_1, null));
|
|
5082
5090
|
;
|
|
5083
5091
|
this.lh_1 = 6;
|
|
5084
|
-
suspendResult = delay(this.
|
|
5092
|
+
suspendResult = delay(this.y2p_1.m2o_1, this);
|
|
5085
5093
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5086
5094
|
return suspendResult;
|
|
5087
5095
|
}
|
|
@@ -5094,7 +5102,7 @@
|
|
|
5094
5102
|
this.lh_1 = 9;
|
|
5095
5103
|
continue $sm;
|
|
5096
5104
|
case 8:
|
|
5097
|
-
this.
|
|
5105
|
+
this.z2p_1.c2m(VOID, timerMiddleware$o$handle$slambda$slambda_0(this.a2q_1, this.y2p_1, this.b2q_1, null));
|
|
5098
5106
|
;
|
|
5099
5107
|
this.lh_1 = 9;
|
|
5100
5108
|
continue $sm;
|
|
@@ -5115,8 +5123,8 @@
|
|
|
5115
5123
|
while (true);
|
|
5116
5124
|
};
|
|
5117
5125
|
protoOf(timerMiddleware$o$handle$slambda).w12 = function ($this$launchWorker, completion) {
|
|
5118
|
-
var i = new timerMiddleware$o$handle$slambda(this.
|
|
5119
|
-
i.
|
|
5126
|
+
var i = new timerMiddleware$o$handle$slambda(this.y2p_1, this.z2p_1, this.a2q_1, this.b2q_1, completion);
|
|
5127
|
+
i.c2q_1 = $this$launchWorker;
|
|
5120
5128
|
return i;
|
|
5121
5129
|
};
|
|
5122
5130
|
function timerMiddleware$o$handle$slambda_0($tmp0__anonymous__1nv1x1, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
@@ -5128,34 +5136,34 @@
|
|
|
5128
5136
|
return l;
|
|
5129
5137
|
}
|
|
5130
5138
|
function _no_name_provided__qut3iv_1($asyncProvider, $jobsProvider) {
|
|
5131
|
-
this.
|
|
5132
|
-
this.
|
|
5139
|
+
this.f2q_1 = $asyncProvider;
|
|
5140
|
+
this.g2q_1 = $jobsProvider;
|
|
5133
5141
|
}
|
|
5134
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5142
|
+
protoOf(_no_name_provided__qut3iv_1).b2o = function (action) {
|
|
5135
5143
|
return action instanceof TimerAction;
|
|
5136
5144
|
};
|
|
5137
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5145
|
+
protoOf(_no_name_provided__qut3iv_1).h2q = function (store, next, action) {
|
|
5138
5146
|
// Inline function 'com.logic.redux.middlewares.timers.timerMiddleware.<anonymous>' call
|
|
5139
5147
|
var tmp0__anonymous__q1qw7t = action instanceof TimerAction ? action : THROW_CCE();
|
|
5140
5148
|
var tmp0_subject = tmp0__anonymous__q1qw7t;
|
|
5141
5149
|
if (tmp0_subject instanceof StartTimerAction) {
|
|
5142
|
-
var job = this.
|
|
5143
|
-
this.
|
|
5150
|
+
var job = this.f2q_1.e2m(VOID, timerMiddleware$o$handle$slambda_0(tmp0__anonymous__q1qw7t, this.f2q_1, this.g2q_1, store, null));
|
|
5151
|
+
this.g2q_1.k2m(tmp0__anonymous__q1qw7t.o2o(), job);
|
|
5144
5152
|
} else {
|
|
5145
5153
|
if (tmp0_subject instanceof StopTimerAction) {
|
|
5146
|
-
this.
|
|
5154
|
+
this.g2q_1.o2m(tmp0__anonymous__q1qw7t.o2o());
|
|
5147
5155
|
} else {
|
|
5148
5156
|
if (tmp0_subject instanceof TimerTickAction) {
|
|
5149
|
-
if (tmp0__anonymous__q1qw7t.
|
|
5150
|
-
this.
|
|
5157
|
+
if (tmp0__anonymous__q1qw7t.q2o_1.equals(TimerType_DELAY_getInstance())) {
|
|
5158
|
+
this.g2q_1.m2m(tmp0__anonymous__q1qw7t.o2o());
|
|
5151
5159
|
}
|
|
5152
5160
|
}
|
|
5153
5161
|
}
|
|
5154
5162
|
}
|
|
5155
5163
|
next(tmp0__anonymous__q1qw7t);
|
|
5156
5164
|
};
|
|
5157
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5158
|
-
return this.
|
|
5165
|
+
protoOf(_no_name_provided__qut3iv_1).c2o = function (store, next, action) {
|
|
5166
|
+
return this.h2q(store, next, action);
|
|
5159
5167
|
};
|
|
5160
5168
|
function enumToString(_this__u8e3s4, mapping) {
|
|
5161
5169
|
var tmp$ret$2;
|
|
@@ -5308,23 +5316,23 @@
|
|
|
5308
5316
|
Category_NONE_instance = new Category('NONE', 1, true);
|
|
5309
5317
|
}
|
|
5310
5318
|
function generateTag($this, tag) {
|
|
5311
|
-
return (!($this.
|
|
5319
|
+
return (!($this.k2q_1 == null) ? !(tag == null) : false) ? '' + $this.k2q_1 + ':' + tag : tag;
|
|
5312
5320
|
}
|
|
5313
5321
|
function Category(name, ordinal, isEnabled) {
|
|
5314
5322
|
Enum.call(this, name, ordinal);
|
|
5315
|
-
this.
|
|
5323
|
+
this.n2q_1 = isEnabled;
|
|
5316
5324
|
}
|
|
5317
5325
|
function Logger$loggerSource$1() {
|
|
5318
|
-
this.
|
|
5326
|
+
this.o2q_1 = new PlatformLogger();
|
|
5319
5327
|
}
|
|
5320
|
-
protoOf(Logger$loggerSource$1).
|
|
5321
|
-
this.
|
|
5328
|
+
protoOf(Logger$loggerSource$1).p2q = function (tag, msg) {
|
|
5329
|
+
this.o2q_1.p2q(tag, msg);
|
|
5322
5330
|
};
|
|
5323
|
-
protoOf(Logger$loggerSource$1).
|
|
5324
|
-
this.
|
|
5331
|
+
protoOf(Logger$loggerSource$1).q2q = function (tag, msg, exception) {
|
|
5332
|
+
this.o2q_1.q2q(tag, msg, exception);
|
|
5325
5333
|
};
|
|
5326
|
-
protoOf(Logger$loggerSource$1).
|
|
5327
|
-
this.
|
|
5334
|
+
protoOf(Logger$loggerSource$1).r2q = function (tag, msg) {
|
|
5335
|
+
this.o2q_1.r2q(tag, msg);
|
|
5328
5336
|
};
|
|
5329
5337
|
function Category_NONE_getInstance() {
|
|
5330
5338
|
Category_initEntries();
|
|
@@ -5333,57 +5341,57 @@
|
|
|
5333
5341
|
function Logger() {
|
|
5334
5342
|
Logger_instance = this;
|
|
5335
5343
|
var tmp = this;
|
|
5336
|
-
tmp.
|
|
5337
|
-
this.
|
|
5338
|
-
this.
|
|
5344
|
+
tmp.i2q_1 = new Logger$loggerSource$1();
|
|
5345
|
+
this.j2q_1 = true;
|
|
5346
|
+
this.k2q_1 = null;
|
|
5339
5347
|
}
|
|
5340
|
-
protoOf(Logger).
|
|
5341
|
-
this.
|
|
5348
|
+
protoOf(Logger).s2q = function (tag, message) {
|
|
5349
|
+
this.t2q(tag, message, Category_NONE_getInstance());
|
|
5342
5350
|
};
|
|
5343
|
-
protoOf(Logger).
|
|
5344
|
-
if (this.
|
|
5345
|
-
this.
|
|
5351
|
+
protoOf(Logger).u2q = function (tag, message, category) {
|
|
5352
|
+
if (this.j2q_1 ? category.n2q_1 : false) {
|
|
5353
|
+
this.i2q_1.r2q(generateTag(this, tag), message);
|
|
5346
5354
|
}
|
|
5347
5355
|
};
|
|
5348
|
-
protoOf(Logger).
|
|
5356
|
+
protoOf(Logger).v2q = function (tag, message, category, $super) {
|
|
5349
5357
|
tag = tag === VOID ? null : tag;
|
|
5350
5358
|
category = category === VOID ? Category_NONE_getInstance() : category;
|
|
5351
5359
|
var tmp;
|
|
5352
5360
|
if ($super === VOID) {
|
|
5353
|
-
this.
|
|
5361
|
+
this.u2q(tag, message, category);
|
|
5354
5362
|
tmp = Unit_getInstance();
|
|
5355
5363
|
} else {
|
|
5356
|
-
tmp = $super.
|
|
5364
|
+
tmp = $super.u2q.call(this, tag, message, category);
|
|
5357
5365
|
}
|
|
5358
5366
|
return tmp;
|
|
5359
5367
|
};
|
|
5360
|
-
protoOf(Logger).
|
|
5361
|
-
if (this.
|
|
5362
|
-
this.
|
|
5368
|
+
protoOf(Logger).t2q = function (tag, message, category) {
|
|
5369
|
+
if (this.j2q_1 ? category.n2q_1 : false) {
|
|
5370
|
+
this.i2q_1.p2q(generateTag(this, tag), message);
|
|
5363
5371
|
}
|
|
5364
5372
|
};
|
|
5365
|
-
protoOf(Logger).
|
|
5366
|
-
if (this.
|
|
5373
|
+
protoOf(Logger).w2q = function (tag, message, exception, category) {
|
|
5374
|
+
if (this.j2q_1 ? category.n2q_1 : false) {
|
|
5367
5375
|
var tmp0_safe_receiver = exception;
|
|
5368
5376
|
if (tmp0_safe_receiver == null)
|
|
5369
5377
|
null;
|
|
5370
5378
|
else {
|
|
5371
5379
|
printStackTrace(tmp0_safe_receiver);
|
|
5372
5380
|
}
|
|
5373
|
-
this.
|
|
5381
|
+
this.i2q_1.q2q(generateTag(this, tag), generateMsg(message, exception), exception);
|
|
5374
5382
|
}
|
|
5375
5383
|
};
|
|
5376
|
-
protoOf(Logger).
|
|
5384
|
+
protoOf(Logger).x2q = function (tag, message, exception, category, $super) {
|
|
5377
5385
|
tag = tag === VOID ? null : tag;
|
|
5378
5386
|
message = message === VOID ? null : message;
|
|
5379
5387
|
exception = exception === VOID ? null : exception;
|
|
5380
5388
|
category = category === VOID ? Category_NONE_getInstance() : category;
|
|
5381
5389
|
var tmp;
|
|
5382
5390
|
if ($super === VOID) {
|
|
5383
|
-
this.
|
|
5391
|
+
this.w2q(tag, message, exception, category);
|
|
5384
5392
|
tmp = Unit_getInstance();
|
|
5385
5393
|
} else {
|
|
5386
|
-
tmp = $super.
|
|
5394
|
+
tmp = $super.w2q.call(this, tag, message, exception, category);
|
|
5387
5395
|
}
|
|
5388
5396
|
return tmp;
|
|
5389
5397
|
};
|
|
@@ -5421,11 +5429,11 @@
|
|
|
5421
5429
|
return tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
|
|
5422
5430
|
}
|
|
5423
5431
|
function CombinedGameLogger(logOutputs) {
|
|
5424
|
-
this.
|
|
5432
|
+
this.y2q_1 = logOutputs;
|
|
5425
5433
|
}
|
|
5426
|
-
protoOf(CombinedGameLogger).
|
|
5434
|
+
protoOf(CombinedGameLogger).z2q = function (tag, message, payload) {
|
|
5427
5435
|
// Inline function 'kotlin.collections.forEach' call
|
|
5428
|
-
var tmp0_forEach = this.
|
|
5436
|
+
var tmp0_forEach = this.y2q_1;
|
|
5429
5437
|
var tmp0_iterator = tmp0_forEach.f();
|
|
5430
5438
|
while (tmp0_iterator.g()) {
|
|
5431
5439
|
var element = tmp0_iterator.h();
|
|
@@ -5433,9 +5441,9 @@
|
|
|
5433
5441
|
element.d(tag, message, payload);
|
|
5434
5442
|
}
|
|
5435
5443
|
};
|
|
5436
|
-
protoOf(CombinedGameLogger).
|
|
5444
|
+
protoOf(CombinedGameLogger).a2r = function (tag, message, exception, payload) {
|
|
5437
5445
|
// Inline function 'kotlin.collections.forEach' call
|
|
5438
|
-
var tmp0_forEach = this.
|
|
5446
|
+
var tmp0_forEach = this.y2q_1;
|
|
5439
5447
|
var tmp0_iterator = tmp0_forEach.f();
|
|
5440
5448
|
while (tmp0_iterator.g()) {
|
|
5441
5449
|
var element = tmp0_iterator.h();
|
|
@@ -5443,9 +5451,9 @@
|
|
|
5443
5451
|
element.e(tag, message, exception, payload);
|
|
5444
5452
|
}
|
|
5445
5453
|
};
|
|
5446
|
-
protoOf(CombinedGameLogger).
|
|
5454
|
+
protoOf(CombinedGameLogger).b2r = function (tag, message, payload) {
|
|
5447
5455
|
// Inline function 'kotlin.collections.forEach' call
|
|
5448
|
-
var tmp0_forEach = this.
|
|
5456
|
+
var tmp0_forEach = this.y2q_1;
|
|
5449
5457
|
var tmp0_iterator = tmp0_forEach.f();
|
|
5450
5458
|
while (tmp0_iterator.g()) {
|
|
5451
5459
|
var element = tmp0_iterator.h();
|
|
@@ -5459,36 +5467,36 @@
|
|
|
5459
5467
|
}
|
|
5460
5468
|
function PlatformGameLogger(enabled) {
|
|
5461
5469
|
enabled = enabled === VOID ? true : enabled;
|
|
5462
|
-
this.
|
|
5470
|
+
this.c2r_1 = enabled;
|
|
5463
5471
|
}
|
|
5464
|
-
protoOf(PlatformGameLogger).
|
|
5465
|
-
this.
|
|
5472
|
+
protoOf(PlatformGameLogger).d2r = function (_set____db54di) {
|
|
5473
|
+
this.c2r_1 = _set____db54di;
|
|
5466
5474
|
};
|
|
5467
|
-
protoOf(PlatformGameLogger).
|
|
5468
|
-
return this.
|
|
5475
|
+
protoOf(PlatformGameLogger).e2r = function () {
|
|
5476
|
+
return this.c2r_1;
|
|
5469
5477
|
};
|
|
5470
|
-
protoOf(PlatformGameLogger).
|
|
5471
|
-
if (!this.
|
|
5478
|
+
protoOf(PlatformGameLogger).z2q = function (tag, message, payload) {
|
|
5479
|
+
if (!this.c2r_1)
|
|
5472
5480
|
return Unit_getInstance();
|
|
5473
|
-
Logger_getInstance().
|
|
5481
|
+
Logger_getInstance().s2q(tag, message);
|
|
5474
5482
|
};
|
|
5475
|
-
protoOf(PlatformGameLogger).
|
|
5476
|
-
if (!this.
|
|
5483
|
+
protoOf(PlatformGameLogger).a2r = function (tag, message, exception, payload) {
|
|
5484
|
+
if (!this.c2r_1)
|
|
5477
5485
|
return Unit_getInstance();
|
|
5478
|
-
Logger_getInstance().
|
|
5486
|
+
Logger_getInstance().x2q(tag, message, exception);
|
|
5479
5487
|
};
|
|
5480
|
-
protoOf(PlatformGameLogger).
|
|
5481
|
-
if (!this.
|
|
5488
|
+
protoOf(PlatformGameLogger).b2r = function (tag, message, payload) {
|
|
5489
|
+
if (!this.c2r_1)
|
|
5482
5490
|
return Unit_getInstance();
|
|
5483
|
-
Logger_getInstance().
|
|
5491
|
+
Logger_getInstance().v2q(tag, message);
|
|
5484
5492
|
};
|
|
5485
5493
|
defineProp(protoOf(PlatformGameLogger), 'enabled', function () {
|
|
5486
|
-
return this.
|
|
5494
|
+
return this.e2r();
|
|
5487
5495
|
}, function (value) {
|
|
5488
|
-
this.
|
|
5496
|
+
this.d2r(value);
|
|
5489
5497
|
});
|
|
5490
5498
|
function _get_$cachedSerializer__te6jhj_9($this) {
|
|
5491
|
-
return $this.
|
|
5499
|
+
return $this.f2r_1.j1();
|
|
5492
5500
|
}
|
|
5493
5501
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
5494
5502
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_4());
|
|
@@ -5500,7 +5508,7 @@
|
|
|
5500
5508
|
Companion_instance_19 = this;
|
|
5501
5509
|
var tmp = this;
|
|
5502
5510
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
5503
|
-
tmp.
|
|
5511
|
+
tmp.f2r_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
5504
5512
|
}
|
|
5505
5513
|
protoOf(Companion_19).serializer = function () {
|
|
5506
5514
|
return _get_$cachedSerializer__te6jhj_9(this);
|
|
@@ -5578,7 +5586,7 @@
|
|
|
5578
5586
|
tmp$ret$0 = tmp0_arrayOf;
|
|
5579
5587
|
tmp$ret$1 = tmp$ret$0;
|
|
5580
5588
|
tmp$ret$2 = tmp$ret$1;
|
|
5581
|
-
tmp.
|
|
5589
|
+
tmp.j2r_1 = tmp$ret$2;
|
|
5582
5590
|
}
|
|
5583
5591
|
protoOf(Companion_20).serializer = function () {
|
|
5584
5592
|
return $serializer_getInstance_8();
|
|
@@ -5596,13 +5604,13 @@
|
|
|
5596
5604
|
tmp0_serialDesc.f1m('tag', false);
|
|
5597
5605
|
tmp0_serialDesc.f1m('message', false);
|
|
5598
5606
|
tmp0_serialDesc.f1m('stackTrace', false);
|
|
5599
|
-
this.
|
|
5607
|
+
this.k2r_1 = tmp0_serialDesc;
|
|
5600
5608
|
}
|
|
5601
5609
|
protoOf($serializer_8).t1b = function () {
|
|
5602
|
-
return this.
|
|
5610
|
+
return this.k2r_1;
|
|
5603
5611
|
};
|
|
5604
5612
|
protoOf($serializer_8).u1m = function () {
|
|
5605
|
-
var tmp0_cached = Companion_getInstance_21().
|
|
5613
|
+
var tmp0_cached = Companion_getInstance_21().j2r_1;
|
|
5606
5614
|
var tmp$ret$2;
|
|
5607
5615
|
// Inline function 'kotlin.arrayOf' call
|
|
5608
5616
|
var tmp0_arrayOf = [tmp0_cached[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
@@ -5616,7 +5624,7 @@
|
|
|
5616
5624
|
return tmp$ret$2;
|
|
5617
5625
|
};
|
|
5618
5626
|
protoOf($serializer_8).v1b = function (decoder) {
|
|
5619
|
-
var tmp0_desc = this.
|
|
5627
|
+
var tmp0_desc = this.k2r_1;
|
|
5620
5628
|
var tmp1_flag = true;
|
|
5621
5629
|
var tmp2_index = 0;
|
|
5622
5630
|
var tmp3_bitMask0 = 0;
|
|
@@ -5625,7 +5633,7 @@
|
|
|
5625
5633
|
var tmp6_local2 = null;
|
|
5626
5634
|
var tmp7_local3 = null;
|
|
5627
5635
|
var tmp8_input = decoder.a1f(tmp0_desc);
|
|
5628
|
-
var tmp9_cached = Companion_getInstance_21().
|
|
5636
|
+
var tmp9_cached = Companion_getInstance_21().j2r_1;
|
|
5629
5637
|
if (tmp8_input.q1f()) {
|
|
5630
5638
|
tmp4_local0 = tmp8_input.m1f(tmp0_desc, 0, tmp9_cached[0], tmp4_local0);
|
|
5631
5639
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -5665,10 +5673,10 @@
|
|
|
5665
5673
|
tmp8_input.b1f(tmp0_desc);
|
|
5666
5674
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
|
|
5667
5675
|
};
|
|
5668
|
-
protoOf($serializer_8).
|
|
5669
|
-
var tmp0_desc = this.
|
|
5676
|
+
protoOf($serializer_8).l2r = function (encoder, value) {
|
|
5677
|
+
var tmp0_desc = this.k2r_1;
|
|
5670
5678
|
var tmp1_output = encoder.a1f(tmp0_desc);
|
|
5671
|
-
var tmp2_cached = Companion_getInstance_21().
|
|
5679
|
+
var tmp2_cached = Companion_getInstance_21().j2r_1;
|
|
5672
5680
|
tmp1_output.r1g(tmp0_desc, 0, tmp2_cached[0], value.type);
|
|
5673
5681
|
tmp1_output.t1g(tmp0_desc, 1, StringSerializer_getInstance(), value.tag);
|
|
5674
5682
|
tmp1_output.t1g(tmp0_desc, 2, StringSerializer_getInstance(), value.message);
|
|
@@ -5676,7 +5684,7 @@
|
|
|
5676
5684
|
tmp1_output.b1f(tmp0_desc);
|
|
5677
5685
|
};
|
|
5678
5686
|
protoOf($serializer_8).u1b = function (encoder, value) {
|
|
5679
|
-
return this.
|
|
5687
|
+
return this.l2r(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
5680
5688
|
};
|
|
5681
5689
|
var $serializer_instance_8;
|
|
5682
5690
|
function $serializer_getInstance_8() {
|
|
@@ -5686,7 +5694,7 @@
|
|
|
5686
5694
|
}
|
|
5687
5695
|
function LoggerOutputDataDto_init_$Init$(seen1, type, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
5688
5696
|
if (!(15 === (15 & seen1))) {
|
|
5689
|
-
throwMissingFieldException(seen1, 15, $serializer_getInstance_8().
|
|
5697
|
+
throwMissingFieldException(seen1, 15, $serializer_getInstance_8().k2r_1);
|
|
5690
5698
|
}
|
|
5691
5699
|
$this.type = type;
|
|
5692
5700
|
$this.tag = tag;
|
|
@@ -5707,13 +5715,13 @@
|
|
|
5707
5715
|
protoOf(LoggerOutputDataDto).s28 = function () {
|
|
5708
5716
|
return this.type;
|
|
5709
5717
|
};
|
|
5710
|
-
protoOf(LoggerOutputDataDto).
|
|
5718
|
+
protoOf(LoggerOutputDataDto).m2r = function () {
|
|
5711
5719
|
return this.tag;
|
|
5712
5720
|
};
|
|
5713
5721
|
protoOf(LoggerOutputDataDto).y8 = function () {
|
|
5714
5722
|
return this.message;
|
|
5715
5723
|
};
|
|
5716
|
-
protoOf(LoggerOutputDataDto).
|
|
5724
|
+
protoOf(LoggerOutputDataDto).n2r = function () {
|
|
5717
5725
|
return this.stackTrace;
|
|
5718
5726
|
};
|
|
5719
5727
|
protoOf(LoggerOutputDataDto).t3 = function () {
|
|
@@ -5728,7 +5736,7 @@
|
|
|
5728
5736
|
protoOf(LoggerOutputDataDto).a2g = function () {
|
|
5729
5737
|
return this.stackTrace;
|
|
5730
5738
|
};
|
|
5731
|
-
protoOf(LoggerOutputDataDto).
|
|
5739
|
+
protoOf(LoggerOutputDataDto).o2r = function (type, tag, message, stackTrace) {
|
|
5732
5740
|
return new LoggerOutputDataDto(type, tag, message, stackTrace);
|
|
5733
5741
|
};
|
|
5734
5742
|
protoOf(LoggerOutputDataDto).copy = function (type, tag, message, stackTrace, $super) {
|
|
@@ -5736,7 +5744,7 @@
|
|
|
5736
5744
|
tag = tag === VOID ? this.tag : tag;
|
|
5737
5745
|
message = message === VOID ? this.message : message;
|
|
5738
5746
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
5739
|
-
return this.
|
|
5747
|
+
return this.o2r(type, tag, message, stackTrace);
|
|
5740
5748
|
};
|
|
5741
5749
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
5742
5750
|
return 'LoggerOutputDataDto(type=' + this.type + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -5766,17 +5774,17 @@
|
|
|
5766
5774
|
};
|
|
5767
5775
|
function PlatformLogger() {
|
|
5768
5776
|
}
|
|
5769
|
-
protoOf(PlatformLogger).
|
|
5777
|
+
protoOf(PlatformLogger).p2q = function (tag, msg) {
|
|
5770
5778
|
console.log(getLogTag(tag) + ': ' + msg);
|
|
5771
5779
|
};
|
|
5772
|
-
protoOf(PlatformLogger).
|
|
5780
|
+
protoOf(PlatformLogger).q2q = function (tag, msg, exception) {
|
|
5773
5781
|
if (!(exception == null)) {
|
|
5774
5782
|
console.error(getLogTag(tag) + ': ' + msg + ', exception: ' + exception);
|
|
5775
5783
|
} else {
|
|
5776
5784
|
console.error(getLogTag(tag) + ': ' + msg);
|
|
5777
5785
|
}
|
|
5778
5786
|
};
|
|
5779
|
-
protoOf(PlatformLogger).
|
|
5787
|
+
protoOf(PlatformLogger).r2q = function (tag, msg) {
|
|
5780
5788
|
console.warn(getLogTag(tag) + ': ' + msg);
|
|
5781
5789
|
};
|
|
5782
5790
|
//region block: post-declaration
|
|
@@ -5794,14 +5802,14 @@
|
|
|
5794
5802
|
protoOf(_no_name_provided__qut3iv).d5 = fold;
|
|
5795
5803
|
protoOf(_no_name_provided__qut3iv).c5 = minusKey;
|
|
5796
5804
|
protoOf(_no_name_provided__qut3iv).e5 = plus;
|
|
5797
|
-
protoOf(AsyncProviderImpl).
|
|
5798
|
-
protoOf(AsyncProviderImpl).
|
|
5799
|
-
protoOf(AsyncProviderImpl).
|
|
5805
|
+
protoOf(AsyncProviderImpl).c2m = launchStore$default;
|
|
5806
|
+
protoOf(AsyncProviderImpl).e2m = launchWorker$default;
|
|
5807
|
+
protoOf(AsyncProviderImpl).g2m = launchWorkerWithLock$default;
|
|
5800
5808
|
protoOf(ActionTypes).z2i = get_actionTag;
|
|
5801
5809
|
protoOf(INIT).z2i = get_actionTag;
|
|
5802
5810
|
protoOf(REPLACE).z2i = get_actionTag;
|
|
5803
|
-
protoOf(middleware$1).
|
|
5804
|
-
protoOf(combineReducers$1).
|
|
5811
|
+
protoOf(middleware$1).b2o = canHandle;
|
|
5812
|
+
protoOf(combineReducers$1).b2o = canHandle_0;
|
|
5805
5813
|
protoOf(TimerAction).z2i = get_actionTag;
|
|
5806
5814
|
protoOf(StartTimerAction).z2i = get_actionTag;
|
|
5807
5815
|
protoOf(TimerTickAction).z2i = get_actionTag;
|