game_client_logic_deb 1.5.4 → 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 +300 -288
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +6883 -6770
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +6 -4
- package/Logic_Debertz-game_client.js +2234 -2234
- 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 () {
|
|
@@ -2236,15 +2247,19 @@
|
|
|
2236
2247
|
if (RulesSetType_entriesInitialized)
|
|
2237
2248
|
return Unit_getInstance();
|
|
2238
2249
|
RulesSetType_entriesInitialized = true;
|
|
2239
|
-
RulesSetType_belot_instance = new RulesSetType('belot', 0);
|
|
2240
|
-
RulesSetType_klabor_instance = new RulesSetType('klabor', 1);
|
|
2241
|
-
RulesSetType_debertzCommon_instance = new RulesSetType('debertzCommon', 2);
|
|
2242
|
-
RulesSetType_debertzKharkiv_instance = new RulesSetType('debertzKharkiv', 3);
|
|
2243
|
-
RulesSetType_custom_instance = new RulesSetType('custom', 4);
|
|
2250
|
+
RulesSetType_belot_instance = new RulesSetType('belot', 0, 'belot');
|
|
2251
|
+
RulesSetType_klabor_instance = new RulesSetType('klabor', 1, 'klabor');
|
|
2252
|
+
RulesSetType_debertzCommon_instance = new RulesSetType('debertzCommon', 2, 'debertzCommon');
|
|
2253
|
+
RulesSetType_debertzKharkiv_instance = new RulesSetType('debertzKharkiv', 3, 'debertzKharkiv');
|
|
2254
|
+
RulesSetType_custom_instance = new RulesSetType('custom', 4, 'custom');
|
|
2244
2255
|
}
|
|
2245
|
-
function RulesSetType(name, ordinal) {
|
|
2256
|
+
function RulesSetType(name, ordinal, value) {
|
|
2246
2257
|
Enum.call(this, name, ordinal);
|
|
2258
|
+
this.value = value;
|
|
2247
2259
|
}
|
|
2260
|
+
protoOf(RulesSetType).j1 = function () {
|
|
2261
|
+
return this.value;
|
|
2262
|
+
};
|
|
2248
2263
|
defineProp(protoOf(RulesSetType), 'name', protoOf(RulesSetType).qg);
|
|
2249
2264
|
defineProp(protoOf(RulesSetType), 'ordinal', protoOf(RulesSetType).rg);
|
|
2250
2265
|
function RulesSetType_belot_getInstance() {
|
|
@@ -3305,11 +3320,11 @@
|
|
|
3305
3320
|
}
|
|
3306
3321
|
return tmp;
|
|
3307
3322
|
}
|
|
3308
|
-
function getValueInHand(_this__u8e3s4, trump) {
|
|
3323
|
+
function getValueInHand(_this__u8e3s4, trump, allCards) {
|
|
3309
3324
|
var isTrump = trump.equals(_this__u8e3s4.s2k());
|
|
3310
|
-
return getValueInHand_0(_this__u8e3s4, isTrump);
|
|
3325
|
+
return getValueInHand_0(_this__u8e3s4, isTrump, allCards);
|
|
3311
3326
|
}
|
|
3312
|
-
function getValueInHand_0(_this__u8e3s4, isTrump) {
|
|
3327
|
+
function getValueInHand_0(_this__u8e3s4, isTrump, allCards) {
|
|
3313
3328
|
var minGrowth;
|
|
3314
3329
|
var maxGrowth;
|
|
3315
3330
|
var tmp0_subject = _this__u8e3s4.qg();
|
|
@@ -3795,9 +3810,6 @@
|
|
|
3795
3810
|
protoOf(GameCard).qg = function () {
|
|
3796
3811
|
return this.v2k() ? CardName_STUB_getInstance() : getName(Companion_getInstance_18(), this.r2k());
|
|
3797
3812
|
};
|
|
3798
|
-
protoOf(GameCard).c2l = function () {
|
|
3799
|
-
return !_get_isShirt__vd98rp(this) ? !this.v2k() : false;
|
|
3800
|
-
};
|
|
3801
3813
|
protoOf(GameCard).v2k = function () {
|
|
3802
3814
|
Companion_getInstance_18();
|
|
3803
3815
|
return this.a2j_1 >= 53;
|
|
@@ -3855,15 +3867,15 @@
|
|
|
3855
3867
|
return this.k2f();
|
|
3856
3868
|
});
|
|
3857
3869
|
function ProcessingCard(gameCard, payload) {
|
|
3858
|
-
this.
|
|
3859
|
-
this.
|
|
3870
|
+
this.c2l_1 = gameCard;
|
|
3871
|
+
this.d2l_1 = payload;
|
|
3860
3872
|
}
|
|
3861
3873
|
protoOf(ProcessingCard).toString = function () {
|
|
3862
|
-
return 'ProcessingCard(gameCard=' + this.
|
|
3874
|
+
return 'ProcessingCard(gameCard=' + this.c2l_1 + ', payload=' + this.d2l_1 + ')';
|
|
3863
3875
|
};
|
|
3864
3876
|
protoOf(ProcessingCard).hashCode = function () {
|
|
3865
|
-
var result = this.
|
|
3866
|
-
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;
|
|
3867
3879
|
return result;
|
|
3868
3880
|
};
|
|
3869
3881
|
protoOf(ProcessingCard).equals = function (other) {
|
|
@@ -3872,14 +3884,14 @@
|
|
|
3872
3884
|
if (!(other instanceof ProcessingCard))
|
|
3873
3885
|
return false;
|
|
3874
3886
|
var tmp0_other_with_cast = other instanceof ProcessingCard ? other : THROW_CCE();
|
|
3875
|
-
if (!this.
|
|
3887
|
+
if (!this.c2l_1.equals(tmp0_other_with_cast.c2l_1))
|
|
3876
3888
|
return false;
|
|
3877
|
-
if (!equals(this.
|
|
3889
|
+
if (!equals(this.d2l_1, tmp0_other_with_cast.d2l_1))
|
|
3878
3890
|
return false;
|
|
3879
3891
|
return true;
|
|
3880
3892
|
};
|
|
3881
3893
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
3882
|
-
return $this.
|
|
3894
|
+
return $this.e2l_1.j1();
|
|
3883
3895
|
}
|
|
3884
3896
|
function Suit$Companion$_anonymous__cbm2iq() {
|
|
3885
3897
|
return createSimpleEnumSerializer('com.logic.data.models.table.cards.Suit', values_3());
|
|
@@ -3915,7 +3927,7 @@
|
|
|
3915
3927
|
Companion_instance_18 = this;
|
|
3916
3928
|
var tmp = this;
|
|
3917
3929
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
3918
|
-
tmp.
|
|
3930
|
+
tmp.e2l_1 = lazy(tmp_0, Suit$Companion$_anonymous__cbm2iq);
|
|
3919
3931
|
}
|
|
3920
3932
|
protoOf(Companion_18).q1y = function () {
|
|
3921
3933
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -3990,15 +4002,15 @@
|
|
|
3990
4002
|
return tmp;
|
|
3991
4003
|
}
|
|
3992
4004
|
function _no_name_provided__qut3iv($logger) {
|
|
3993
|
-
this.
|
|
4005
|
+
this.g2l_1 = $logger;
|
|
3994
4006
|
AbstractCoroutineContextElement.call(this, Key_getInstance());
|
|
3995
4007
|
}
|
|
3996
4008
|
protoOf(_no_name_provided__qut3iv).on = function (context, exception) {
|
|
3997
|
-
return this.
|
|
4009
|
+
return this.g2l_1.e('AsyncErrorHandler', 'AsyncProvider error: ' + exception, exception);
|
|
3998
4010
|
};
|
|
3999
4011
|
function AsyncProviderImpl$launchWorkerWithLock$slambda(this$0, $block, resultContinuation) {
|
|
4000
|
-
this.
|
|
4001
|
-
this.
|
|
4012
|
+
this.p2l_1 = this$0;
|
|
4013
|
+
this.q2l_1 = $block;
|
|
4002
4014
|
CoroutineImpl.call(this, resultContinuation);
|
|
4003
4015
|
}
|
|
4004
4016
|
protoOf(AsyncProviderImpl$launchWorkerWithLock$slambda).v12 = function ($this$launch, $completion) {
|
|
@@ -4022,9 +4034,9 @@
|
|
|
4022
4034
|
continue $sm;
|
|
4023
4035
|
case 1:
|
|
4024
4036
|
var tmp_0 = this;
|
|
4025
|
-
tmp_0.
|
|
4037
|
+
tmp_0.t2l_1 = this.p2l_1.w2l_1;
|
|
4026
4038
|
this.lh_1 = 2;
|
|
4027
|
-
suspendResult = this.
|
|
4039
|
+
suspendResult = this.t2l_1.p19(null, this);
|
|
4028
4040
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4029
4041
|
return suspendResult;
|
|
4030
4042
|
}
|
|
@@ -4039,26 +4051,26 @@
|
|
|
4039
4051
|
case 4:
|
|
4040
4052
|
this.mh_1 = 9;
|
|
4041
4053
|
this.lh_1 = 5;
|
|
4042
|
-
suspendResult = this.
|
|
4054
|
+
suspendResult = this.q2l_1(this.r2l_1, this);
|
|
4043
4055
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4044
4056
|
return suspendResult;
|
|
4045
4057
|
}
|
|
4046
4058
|
|
|
4047
4059
|
continue $sm;
|
|
4048
4060
|
case 5:
|
|
4049
|
-
this.
|
|
4061
|
+
this.u2l_1 = suspendResult;
|
|
4050
4062
|
this.mh_1 = 10;
|
|
4051
4063
|
this.lh_1 = 6;
|
|
4052
4064
|
var tmp_1 = this;
|
|
4053
4065
|
continue $sm;
|
|
4054
4066
|
case 6:
|
|
4055
4067
|
var tmp_2 = this;
|
|
4056
|
-
this.
|
|
4057
|
-
tmp_2.
|
|
4068
|
+
this.t2l_1.a19(null);
|
|
4069
|
+
tmp_2.s2l_1 = Unit_getInstance();
|
|
4058
4070
|
this.lh_1 = 8;
|
|
4059
4071
|
continue $sm;
|
|
4060
4072
|
case 7:
|
|
4061
|
-
this.
|
|
4073
|
+
this.t2l_1.a19(null);
|
|
4062
4074
|
;
|
|
4063
4075
|
if (false) {
|
|
4064
4076
|
this.lh_1 = 1;
|
|
@@ -4072,7 +4084,7 @@
|
|
|
4072
4084
|
case 9:
|
|
4073
4085
|
this.mh_1 = 10;
|
|
4074
4086
|
var t = this.oh_1;
|
|
4075
|
-
this.
|
|
4087
|
+
this.t2l_1.a19(null);
|
|
4076
4088
|
;
|
|
4077
4089
|
throw t;
|
|
4078
4090
|
case 10:
|
|
@@ -4090,8 +4102,8 @@
|
|
|
4090
4102
|
while (true);
|
|
4091
4103
|
};
|
|
4092
4104
|
protoOf(AsyncProviderImpl$launchWorkerWithLock$slambda).w12 = function ($this$launch, completion) {
|
|
4093
|
-
var i = new AsyncProviderImpl$launchWorkerWithLock$slambda(this.
|
|
4094
|
-
i.
|
|
4105
|
+
var i = new AsyncProviderImpl$launchWorkerWithLock$slambda(this.p2l_1, this.q2l_1, completion);
|
|
4106
|
+
i.r2l_1 = $this$launch;
|
|
4095
4107
|
return i;
|
|
4096
4108
|
};
|
|
4097
4109
|
function AsyncProviderImpl$launchWorkerWithLock$slambda_0(this$0, $block, resultContinuation) {
|
|
@@ -4103,31 +4115,31 @@
|
|
|
4103
4115
|
return l;
|
|
4104
4116
|
}
|
|
4105
4117
|
function AsyncProviderImpl(logger) {
|
|
4106
|
-
this.
|
|
4107
|
-
this.
|
|
4118
|
+
this.v2l_1 = Job();
|
|
4119
|
+
this.w2l_1 = Mutex();
|
|
4108
4120
|
var tmp = this;
|
|
4109
4121
|
var tmp$ret$0;
|
|
4110
4122
|
// Inline function 'kotlinx.coroutines.CoroutineExceptionHandler' call
|
|
4111
4123
|
tmp$ret$0 = new _no_name_provided__qut3iv(logger);
|
|
4112
|
-
tmp.
|
|
4113
|
-
this.
|
|
4114
|
-
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));
|
|
4115
4127
|
}
|
|
4116
|
-
protoOf(AsyncProviderImpl).
|
|
4117
|
-
return this.
|
|
4128
|
+
protoOf(AsyncProviderImpl).a2m = function () {
|
|
4129
|
+
return this.x2l_1;
|
|
4118
4130
|
};
|
|
4119
|
-
protoOf(AsyncProviderImpl).
|
|
4120
|
-
return launch(this.
|
|
4131
|
+
protoOf(AsyncProviderImpl).b2m = function (context, block) {
|
|
4132
|
+
return launch(this.y2l_1, context, VOID, block);
|
|
4121
4133
|
};
|
|
4122
|
-
protoOf(AsyncProviderImpl).
|
|
4123
|
-
return launch(this.
|
|
4134
|
+
protoOf(AsyncProviderImpl).d2m = function (context, block) {
|
|
4135
|
+
return launch(this.z2l_1, context, VOID, block);
|
|
4124
4136
|
};
|
|
4125
|
-
protoOf(AsyncProviderImpl).
|
|
4126
|
-
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));
|
|
4127
4139
|
};
|
|
4128
4140
|
protoOf(AsyncProviderImpl).el = function () {
|
|
4129
|
-
if (!this.
|
|
4130
|
-
this.
|
|
4141
|
+
if (!this.v2l_1.cq()) {
|
|
4142
|
+
this.v2l_1.dk();
|
|
4131
4143
|
}
|
|
4132
4144
|
};
|
|
4133
4145
|
function AsyncProvider() {
|
|
@@ -4135,7 +4147,7 @@
|
|
|
4135
4147
|
function UUIDIdsProvider() {
|
|
4136
4148
|
UUIDIdsProvider_instance = this;
|
|
4137
4149
|
}
|
|
4138
|
-
protoOf(UUIDIdsProvider).
|
|
4150
|
+
protoOf(UUIDIdsProvider).h2m = function () {
|
|
4139
4151
|
return uuid4().toString();
|
|
4140
4152
|
};
|
|
4141
4153
|
var UUIDIdsProvider_instance;
|
|
@@ -4147,37 +4159,37 @@
|
|
|
4147
4159
|
function IdsProvider() {
|
|
4148
4160
|
}
|
|
4149
4161
|
function JobsProviderImpl(logger) {
|
|
4150
|
-
this.
|
|
4162
|
+
this.i2m_1 = logger;
|
|
4151
4163
|
var tmp = this;
|
|
4152
4164
|
var tmp$ret$0;
|
|
4153
4165
|
// Inline function 'kotlin.collections.hashMapOf' call
|
|
4154
4166
|
tmp$ret$0 = HashMap_init_$Create$();
|
|
4155
|
-
tmp.
|
|
4167
|
+
tmp.j2m_1 = tmp$ret$0;
|
|
4156
4168
|
}
|
|
4157
|
-
protoOf(JobsProviderImpl).
|
|
4158
|
-
if (this.
|
|
4159
|
-
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);
|
|
4160
4172
|
}
|
|
4161
4173
|
// Inline function 'kotlin.collections.set' call
|
|
4162
|
-
var tmp0_set = this.
|
|
4174
|
+
var tmp0_set = this.j2m_1;
|
|
4163
4175
|
tmp0_set.v3(timerTag, job);
|
|
4164
4176
|
};
|
|
4165
|
-
protoOf(JobsProviderImpl).
|
|
4166
|
-
return this.
|
|
4177
|
+
protoOf(JobsProviderImpl).l2m = function (timerTag) {
|
|
4178
|
+
return this.j2m_1.q1(timerTag);
|
|
4167
4179
|
};
|
|
4168
|
-
protoOf(JobsProviderImpl).
|
|
4169
|
-
if (!this.
|
|
4170
|
-
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);
|
|
4171
4183
|
}
|
|
4172
|
-
this.
|
|
4184
|
+
this.j2m_1.jc(timerTag);
|
|
4173
4185
|
};
|
|
4174
|
-
protoOf(JobsProviderImpl).
|
|
4186
|
+
protoOf(JobsProviderImpl).n2m = function (timers) {
|
|
4175
4187
|
// Inline function 'kotlin.collections.forEach' call
|
|
4176
4188
|
var tmp0_iterator = timers.f();
|
|
4177
4189
|
while (tmp0_iterator.g()) {
|
|
4178
4190
|
var element = tmp0_iterator.h();
|
|
4179
4191
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.cancelJobs.<anonymous>' call
|
|
4180
|
-
var timer = this.
|
|
4192
|
+
var timer = this.j2m_1.t1(element);
|
|
4181
4193
|
var tmp0_safe_receiver = timer;
|
|
4182
4194
|
if (tmp0_safe_receiver == null)
|
|
4183
4195
|
null;
|
|
@@ -4185,11 +4197,11 @@
|
|
|
4185
4197
|
tmp0_safe_receiver.dk();
|
|
4186
4198
|
}
|
|
4187
4199
|
}
|
|
4188
|
-
this.
|
|
4200
|
+
this.j2m_1.u1().q2(toSet(timers));
|
|
4189
4201
|
};
|
|
4190
|
-
protoOf(JobsProviderImpl).
|
|
4191
|
-
var timer = this.
|
|
4192
|
-
this.
|
|
4202
|
+
protoOf(JobsProviderImpl).o2m = function (timerTag) {
|
|
4203
|
+
var timer = this.j2m_1.t1(timerTag);
|
|
4204
|
+
this.j2m_1.jc(timerTag);
|
|
4193
4205
|
var tmp0_safe_receiver = timer;
|
|
4194
4206
|
if (tmp0_safe_receiver == null)
|
|
4195
4207
|
null;
|
|
@@ -4343,7 +4355,7 @@
|
|
|
4343
4355
|
}
|
|
4344
4356
|
function createStore$dispatch(currentState, currentReducer, $logger, stateTrigger, action) {
|
|
4345
4357
|
try {
|
|
4346
|
-
currentState._v = currentReducer._v.
|
|
4358
|
+
currentState._v = currentReducer._v.p2m(currentState._v, action);
|
|
4347
4359
|
} catch ($p) {
|
|
4348
4360
|
if ($p instanceof Exception) {
|
|
4349
4361
|
var exception = $p;
|
|
@@ -4364,18 +4376,18 @@
|
|
|
4364
4376
|
};
|
|
4365
4377
|
}
|
|
4366
4378
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug($collector, this$0, resultContinuation) {
|
|
4367
|
-
this.
|
|
4368
|
-
this.
|
|
4379
|
+
this.y2m_1 = $collector;
|
|
4380
|
+
this.z2m_1 = this$0;
|
|
4369
4381
|
CoroutineImpl.call(this, resultContinuation);
|
|
4370
4382
|
}
|
|
4371
|
-
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).
|
|
4372
|
-
var tmp = this.
|
|
4383
|
+
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).b2n = function (value, $completion) {
|
|
4384
|
+
var tmp = this.c2n(value, $completion);
|
|
4373
4385
|
tmp.nh_1 = Unit_getInstance();
|
|
4374
4386
|
tmp.oh_1 = null;
|
|
4375
4387
|
return tmp.uh();
|
|
4376
4388
|
};
|
|
4377
4389
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).gi = function (p1, $completion) {
|
|
4378
|
-
return this.
|
|
4390
|
+
return this.b2n(p1 instanceof Unit ? p1 : THROW_CCE(), $completion);
|
|
4379
4391
|
};
|
|
4380
4392
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).uh = function () {
|
|
4381
4393
|
var suspendResult = this.nh_1;
|
|
@@ -4386,7 +4398,7 @@
|
|
|
4386
4398
|
case 0:
|
|
4387
4399
|
this.mh_1 = 2;
|
|
4388
4400
|
this.lh_1 = 1;
|
|
4389
|
-
suspendResult = this.
|
|
4401
|
+
suspendResult = this.y2m_1.yx(this.z2m_1.pj(), this);
|
|
4390
4402
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4391
4403
|
return suspendResult;
|
|
4392
4404
|
}
|
|
@@ -4408,23 +4420,23 @@
|
|
|
4408
4420
|
}
|
|
4409
4421
|
while (true);
|
|
4410
4422
|
};
|
|
4411
|
-
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).
|
|
4412
|
-
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.
|
|
4413
|
-
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;
|
|
4414
4426
|
return i;
|
|
4415
4427
|
};
|
|
4416
4428
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug_0($collector, this$0, resultContinuation) {
|
|
4417
4429
|
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug($collector, this$0, resultContinuation);
|
|
4418
4430
|
var l = function (value, $completion) {
|
|
4419
|
-
return i.
|
|
4431
|
+
return i.b2n(value, $completion);
|
|
4420
4432
|
};
|
|
4421
4433
|
l.$arity = 1;
|
|
4422
4434
|
return l;
|
|
4423
4435
|
}
|
|
4424
4436
|
function $collectCOROUTINE$0(_this__u8e3s4, collector, resultContinuation) {
|
|
4425
4437
|
CoroutineImpl.call(this, resultContinuation);
|
|
4426
|
-
this.
|
|
4427
|
-
this.
|
|
4438
|
+
this.q2n_1 = _this__u8e3s4;
|
|
4439
|
+
this.r2n_1 = collector;
|
|
4428
4440
|
}
|
|
4429
4441
|
protoOf($collectCOROUTINE$0).uh = function () {
|
|
4430
4442
|
var suspendResult = this.nh_1;
|
|
@@ -4435,8 +4447,8 @@
|
|
|
4435
4447
|
case 0:
|
|
4436
4448
|
this.mh_1 = 2;
|
|
4437
4449
|
this.lh_1 = 1;
|
|
4438
|
-
var tmp_0 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.
|
|
4439
|
-
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);
|
|
4440
4452
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4441
4453
|
return suspendResult;
|
|
4442
4454
|
}
|
|
@@ -4459,10 +4471,10 @@
|
|
|
4459
4471
|
while (true);
|
|
4460
4472
|
};
|
|
4461
4473
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
4462
|
-
this.
|
|
4474
|
+
this.u2n_1 = function_0;
|
|
4463
4475
|
}
|
|
4464
4476
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).yx = function (value, $completion) {
|
|
4465
|
-
var tmp0 = this.
|
|
4477
|
+
var tmp0 = this.u2n_1(value, $completion);
|
|
4466
4478
|
return tmp0;
|
|
4467
4479
|
};
|
|
4468
4480
|
function createStore$o$dispatch$lambda($currentState, $currentReducer, $logger, $stateTrigger) {
|
|
@@ -4478,70 +4490,70 @@
|
|
|
4478
4490
|
};
|
|
4479
4491
|
}
|
|
4480
4492
|
function _no_name_provided__qut3iv_0($stateTrigger, this$0) {
|
|
4481
|
-
this.
|
|
4482
|
-
this.
|
|
4493
|
+
this.s2n_1 = $stateTrigger;
|
|
4494
|
+
this.t2n_1 = this$0;
|
|
4483
4495
|
}
|
|
4484
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
4496
|
+
protoOf(_no_name_provided__qut3iv_0).v2n = function (collector, $completion) {
|
|
4485
4497
|
var tmp = new $collectCOROUTINE$0(this, collector, $completion);
|
|
4486
4498
|
tmp.nh_1 = Unit_getInstance();
|
|
4487
4499
|
tmp.oh_1 = null;
|
|
4488
4500
|
return tmp.uh();
|
|
4489
4501
|
};
|
|
4490
4502
|
protoOf(_no_name_provided__qut3iv_0).rz = function (collector, $completion) {
|
|
4491
|
-
return this.
|
|
4503
|
+
return this.v2n(collector, $completion);
|
|
4492
4504
|
};
|
|
4493
4505
|
function createStore$2($currentState, $currentReducer, $logger, $stateTrigger) {
|
|
4494
|
-
this.
|
|
4495
|
-
this.
|
|
4496
|
-
this.
|
|
4506
|
+
this.g2n_1 = $currentState;
|
|
4507
|
+
this.h2n_1 = $stateTrigger;
|
|
4508
|
+
this.d2n_1 = this;
|
|
4497
4509
|
var tmp = this;
|
|
4498
|
-
tmp.
|
|
4510
|
+
tmp.e2n_1 = createStore$o$dispatch$lambda($currentState, $currentReducer, $logger, $stateTrigger);
|
|
4499
4511
|
var tmp_0 = this;
|
|
4500
|
-
tmp_0.
|
|
4512
|
+
tmp_0.f2n_1 = createStore$o$replaceReducer$lambda($currentReducer, $currentState, $logger, $stateTrigger);
|
|
4501
4513
|
}
|
|
4502
|
-
protoOf(createStore$2).
|
|
4503
|
-
return this.
|
|
4514
|
+
protoOf(createStore$2).w2n = function () {
|
|
4515
|
+
return this.d2n_1;
|
|
4504
4516
|
};
|
|
4505
4517
|
protoOf(createStore$2).pj = function () {
|
|
4506
|
-
return createStore$getState(this.
|
|
4518
|
+
return createStore$getState(this.g2n_1);
|
|
4519
|
+
};
|
|
4520
|
+
protoOf(createStore$2).x2n = function (_set____db54di) {
|
|
4521
|
+
this.e2n_1 = _set____db54di;
|
|
4507
4522
|
};
|
|
4508
|
-
protoOf(createStore$2).y2n = function (
|
|
4509
|
-
this.
|
|
4523
|
+
protoOf(createStore$2).y2n = function () {
|
|
4524
|
+
return this.e2n_1;
|
|
4510
4525
|
};
|
|
4511
4526
|
protoOf(createStore$2).z2n = function () {
|
|
4512
4527
|
return this.f2n_1;
|
|
4513
4528
|
};
|
|
4514
4529
|
protoOf(createStore$2).a2o = function () {
|
|
4515
|
-
return this.g2n_1;
|
|
4516
|
-
};
|
|
4517
|
-
protoOf(createStore$2).b2o = function () {
|
|
4518
4530
|
var tmp$ret$2;
|
|
4519
4531
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
4520
4532
|
var tmp$ret$1;
|
|
4521
4533
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
4522
4534
|
var tmp$ret$0;
|
|
4523
4535
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
4524
|
-
tmp$ret$0 = new _no_name_provided__qut3iv_0(this.
|
|
4536
|
+
tmp$ret$0 = new _no_name_provided__qut3iv_0(this.h2n_1, this);
|
|
4525
4537
|
tmp$ret$1 = tmp$ret$0;
|
|
4526
4538
|
tmp$ret$2 = tmp$ret$1;
|
|
4527
4539
|
return tmp$ret$2;
|
|
4528
4540
|
};
|
|
4529
4541
|
defineProp(protoOf(createStore$2), 'store', function () {
|
|
4530
|
-
return this.
|
|
4542
|
+
return this.w2n();
|
|
4531
4543
|
});
|
|
4532
4544
|
defineProp(protoOf(createStore$2), 'state', function () {
|
|
4533
4545
|
return this.pj();
|
|
4534
4546
|
});
|
|
4535
4547
|
defineProp(protoOf(createStore$2), 'dispatch', function () {
|
|
4536
|
-
return this.
|
|
4548
|
+
return this.y2n();
|
|
4537
4549
|
}, function (value) {
|
|
4538
|
-
this.
|
|
4550
|
+
this.x2n(value);
|
|
4539
4551
|
});
|
|
4540
4552
|
defineProp(protoOf(createStore$2), 'replaceReducer', function () {
|
|
4541
|
-
return this.
|
|
4553
|
+
return this.z2n();
|
|
4542
4554
|
});
|
|
4543
4555
|
defineProp(protoOf(createStore$2), 'observe', function () {
|
|
4544
|
-
return this.
|
|
4556
|
+
return this.a2o();
|
|
4545
4557
|
});
|
|
4546
4558
|
function INIT() {
|
|
4547
4559
|
INIT_instance = this;
|
|
@@ -4598,10 +4610,10 @@
|
|
|
4598
4610
|
return new middleware$1(dispatch);
|
|
4599
4611
|
}
|
|
4600
4612
|
function middleware$1($dispatch) {
|
|
4601
|
-
this.
|
|
4613
|
+
this.d2o_1 = $dispatch;
|
|
4602
4614
|
}
|
|
4603
|
-
protoOf(middleware$1).
|
|
4604
|
-
this.
|
|
4615
|
+
protoOf(middleware$1).c2o = function (store, next, action) {
|
|
4616
|
+
this.d2o_1(store, next, action);
|
|
4605
4617
|
};
|
|
4606
4618
|
function Reducer() {
|
|
4607
4619
|
}
|
|
@@ -4609,9 +4621,9 @@
|
|
|
4609
4621
|
return new combineReducers$1(reducers);
|
|
4610
4622
|
}
|
|
4611
4623
|
function combineReducers$1($reducers) {
|
|
4612
|
-
this.
|
|
4624
|
+
this.e2o_1 = $reducers;
|
|
4613
4625
|
}
|
|
4614
|
-
protoOf(combineReducers$1).
|
|
4626
|
+
protoOf(combineReducers$1).f2o = function (state, action) {
|
|
4615
4627
|
var tmp$ret$4;
|
|
4616
4628
|
// Inline function 'kotlin.collections.fold' call
|
|
4617
4629
|
var tmp$ret$2;
|
|
@@ -4619,7 +4631,7 @@
|
|
|
4619
4631
|
var tmp$ret$1;
|
|
4620
4632
|
// Inline function 'kotlin.collections.filterTo' call
|
|
4621
4633
|
var tmp0_filterTo = ArrayList_init_$Create$();
|
|
4622
|
-
var indexedObject = this.
|
|
4634
|
+
var indexedObject = this.e2o_1;
|
|
4623
4635
|
var inductionVariable = 0;
|
|
4624
4636
|
var last = indexedObject.length;
|
|
4625
4637
|
while (inductionVariable < last) {
|
|
@@ -4627,7 +4639,7 @@
|
|
|
4627
4639
|
inductionVariable = inductionVariable + 1 | 0;
|
|
4628
4640
|
var tmp$ret$0;
|
|
4629
4641
|
// Inline function 'com.logic.domain.engine.definitions.<no name provided>.reduce.<anonymous>' call
|
|
4630
|
-
tmp$ret$0 = element.
|
|
4642
|
+
tmp$ret$0 = element.b2o(action);
|
|
4631
4643
|
if (tmp$ret$0) {
|
|
4632
4644
|
tmp0_filterTo.a(element);
|
|
4633
4645
|
}
|
|
@@ -4642,14 +4654,14 @@
|
|
|
4642
4654
|
var tmp$ret$3;
|
|
4643
4655
|
// Inline function 'com.logic.domain.engine.definitions.<no name provided>.reduce.<anonymous>' call
|
|
4644
4656
|
var tmp2__anonymous__z9zvc9 = accumulator;
|
|
4645
|
-
tmp$ret$3 = element_0.
|
|
4657
|
+
tmp$ret$3 = element_0.p2m(tmp2__anonymous__z9zvc9, action);
|
|
4646
4658
|
accumulator = tmp$ret$3;
|
|
4647
4659
|
}
|
|
4648
4660
|
tmp$ret$4 = accumulator;
|
|
4649
4661
|
return tmp$ret$4;
|
|
4650
4662
|
};
|
|
4651
|
-
protoOf(combineReducers$1).
|
|
4652
|
-
return this.
|
|
4663
|
+
protoOf(combineReducers$1).p2m = function (state, action) {
|
|
4664
|
+
return this.f2o((state == null ? true : isObject(state)) ? state : THROW_CCE(), action);
|
|
4653
4665
|
};
|
|
4654
4666
|
function Store() {
|
|
4655
4667
|
}
|
|
@@ -4663,22 +4675,22 @@
|
|
|
4663
4675
|
initialDelay = initialDelay === VOID ? new Long(0, 0) : initialDelay;
|
|
4664
4676
|
type = type === VOID ? TimerType_DELAY_getInstance() : type;
|
|
4665
4677
|
TimerAction.call(this);
|
|
4666
|
-
this.
|
|
4667
|
-
this.
|
|
4668
|
-
this.
|
|
4669
|
-
this.
|
|
4678
|
+
this.k2o_1 = timerTag;
|
|
4679
|
+
this.l2o_1 = delayMillis;
|
|
4680
|
+
this.m2o_1 = initialDelay;
|
|
4681
|
+
this.n2o_1 = type;
|
|
4670
4682
|
}
|
|
4671
|
-
protoOf(StartTimerAction).
|
|
4672
|
-
return this.
|
|
4683
|
+
protoOf(StartTimerAction).o2o = function () {
|
|
4684
|
+
return this.k2o_1;
|
|
4673
4685
|
};
|
|
4674
4686
|
protoOf(StartTimerAction).toString = function () {
|
|
4675
|
-
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 + ')';
|
|
4676
4688
|
};
|
|
4677
4689
|
protoOf(StartTimerAction).hashCode = function () {
|
|
4678
|
-
var result = hashCode(this.
|
|
4690
|
+
var result = hashCode(this.k2o_1);
|
|
4691
|
+
result = imul(result, 31) + this.l2o_1.hashCode() | 0;
|
|
4679
4692
|
result = imul(result, 31) + this.m2o_1.hashCode() | 0;
|
|
4680
4693
|
result = imul(result, 31) + this.n2o_1.hashCode() | 0;
|
|
4681
|
-
result = imul(result, 31) + this.o2o_1.hashCode() | 0;
|
|
4682
4694
|
return result;
|
|
4683
4695
|
};
|
|
4684
4696
|
protoOf(StartTimerAction).equals = function (other) {
|
|
@@ -4687,14 +4699,14 @@
|
|
|
4687
4699
|
if (!(other instanceof StartTimerAction))
|
|
4688
4700
|
return false;
|
|
4689
4701
|
var tmp0_other_with_cast = other instanceof StartTimerAction ? other : THROW_CCE();
|
|
4690
|
-
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))
|
|
4691
4705
|
return false;
|
|
4692
4706
|
if (!this.m2o_1.equals(tmp0_other_with_cast.m2o_1))
|
|
4693
4707
|
return false;
|
|
4694
4708
|
if (!this.n2o_1.equals(tmp0_other_with_cast.n2o_1))
|
|
4695
4709
|
return false;
|
|
4696
|
-
if (!this.o2o_1.equals(tmp0_other_with_cast.o2o_1))
|
|
4697
|
-
return false;
|
|
4698
4710
|
return true;
|
|
4699
4711
|
};
|
|
4700
4712
|
defineProp(protoOf(StartTimerAction), 'actionTag', function () {
|
|
@@ -4715,21 +4727,21 @@
|
|
|
4715
4727
|
}
|
|
4716
4728
|
function TimerTickAction(timerTag, type) {
|
|
4717
4729
|
TimerAction.call(this);
|
|
4718
|
-
this.
|
|
4719
|
-
this.
|
|
4730
|
+
this.p2o_1 = timerTag;
|
|
4731
|
+
this.q2o_1 = type;
|
|
4720
4732
|
}
|
|
4721
|
-
protoOf(TimerTickAction).
|
|
4722
|
-
return this.
|
|
4733
|
+
protoOf(TimerTickAction).o2o = function () {
|
|
4734
|
+
return this.p2o_1;
|
|
4723
4735
|
};
|
|
4724
4736
|
protoOf(TimerTickAction).notValidateWhenFinished = function () {
|
|
4725
|
-
return this.
|
|
4737
|
+
return this.p2o_1.notValidateWhenFinished();
|
|
4726
4738
|
};
|
|
4727
4739
|
protoOf(TimerTickAction).toString = function () {
|
|
4728
|
-
return 'TimerTickAction(timerTag=' + this.
|
|
4740
|
+
return 'TimerTickAction(timerTag=' + this.p2o_1 + ', type=' + this.q2o_1 + ')';
|
|
4729
4741
|
};
|
|
4730
4742
|
protoOf(TimerTickAction).hashCode = function () {
|
|
4731
|
-
var result = hashCode(this.
|
|
4732
|
-
result = imul(result, 31) + this.
|
|
4743
|
+
var result = hashCode(this.p2o_1);
|
|
4744
|
+
result = imul(result, 31) + this.q2o_1.hashCode() | 0;
|
|
4733
4745
|
return result;
|
|
4734
4746
|
};
|
|
4735
4747
|
protoOf(TimerTickAction).equals = function (other) {
|
|
@@ -4738,9 +4750,9 @@
|
|
|
4738
4750
|
if (!(other instanceof TimerTickAction))
|
|
4739
4751
|
return false;
|
|
4740
4752
|
var tmp0_other_with_cast = other instanceof TimerTickAction ? other : THROW_CCE();
|
|
4741
|
-
if (!equals(this.
|
|
4753
|
+
if (!equals(this.p2o_1, tmp0_other_with_cast.p2o_1))
|
|
4742
4754
|
return false;
|
|
4743
|
-
if (!this.
|
|
4755
|
+
if (!this.q2o_1.equals(tmp0_other_with_cast.q2o_1))
|
|
4744
4756
|
return false;
|
|
4745
4757
|
return true;
|
|
4746
4758
|
};
|
|
@@ -4749,16 +4761,16 @@
|
|
|
4749
4761
|
});
|
|
4750
4762
|
function StopTimerAction(timerTag) {
|
|
4751
4763
|
TimerAction.call(this);
|
|
4752
|
-
this.
|
|
4764
|
+
this.r2o_1 = timerTag;
|
|
4753
4765
|
}
|
|
4754
|
-
protoOf(StopTimerAction).
|
|
4755
|
-
return this.
|
|
4766
|
+
protoOf(StopTimerAction).o2o = function () {
|
|
4767
|
+
return this.r2o_1;
|
|
4756
4768
|
};
|
|
4757
4769
|
protoOf(StopTimerAction).toString = function () {
|
|
4758
|
-
return 'StopTimerAction(timerTag=' + this.
|
|
4770
|
+
return 'StopTimerAction(timerTag=' + this.r2o_1 + ')';
|
|
4759
4771
|
};
|
|
4760
4772
|
protoOf(StopTimerAction).hashCode = function () {
|
|
4761
|
-
return hashCode(this.
|
|
4773
|
+
return hashCode(this.r2o_1);
|
|
4762
4774
|
};
|
|
4763
4775
|
protoOf(StopTimerAction).equals = function (other) {
|
|
4764
4776
|
if (this === other)
|
|
@@ -4766,7 +4778,7 @@
|
|
|
4766
4778
|
if (!(other instanceof StopTimerAction))
|
|
4767
4779
|
return false;
|
|
4768
4780
|
var tmp0_other_with_cast = other instanceof StopTimerAction ? other : THROW_CCE();
|
|
4769
|
-
if (!equals(this.
|
|
4781
|
+
if (!equals(this.r2o_1, tmp0_other_with_cast.r2o_1))
|
|
4770
4782
|
return false;
|
|
4771
4783
|
return true;
|
|
4772
4784
|
};
|
|
@@ -4830,7 +4842,7 @@
|
|
|
4830
4842
|
}
|
|
4831
4843
|
function applyMiddleware$lambda$lambda$lambda$lambda($tmp1__anonymous__6ijp4k, $store, $tmp2__anonymous__bd8cc3) {
|
|
4832
4844
|
return function (action) {
|
|
4833
|
-
$tmp1__anonymous__6ijp4k.
|
|
4845
|
+
$tmp1__anonymous__6ijp4k.c2o($store, $tmp2__anonymous__bd8cc3, action);
|
|
4834
4846
|
return Unit_getInstance();
|
|
4835
4847
|
};
|
|
4836
4848
|
}
|
|
@@ -4849,7 +4861,7 @@
|
|
|
4849
4861
|
inductionVariable = inductionVariable + 1 | 0;
|
|
4850
4862
|
var tmp$ret$0;
|
|
4851
4863
|
// Inline function 'com.logic.redux.enhancers.applyMiddleware.<anonymous>.<anonymous>.<anonymous>.<anonymous>' call
|
|
4852
|
-
tmp$ret$0 = element.
|
|
4864
|
+
tmp$ret$0 = element.b2o(action);
|
|
4853
4865
|
if (tmp$ret$0) {
|
|
4854
4866
|
tmp0_filterTo.a(element);
|
|
4855
4867
|
}
|
|
@@ -4897,9 +4909,9 @@
|
|
|
4897
4909
|
return tmp$ret$0;
|
|
4898
4910
|
}
|
|
4899
4911
|
function timerMiddleware$o$handle$slambda$slambda($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
4900
|
-
this.
|
|
4901
|
-
this.
|
|
4902
|
-
this.
|
|
4912
|
+
this.a2p_1 = $jobsProvider;
|
|
4913
|
+
this.b2p_1 = $tmp0__anonymous__1nv1x1;
|
|
4914
|
+
this.c2p_1 = $store;
|
|
4903
4915
|
CoroutineImpl.call(this, resultContinuation);
|
|
4904
4916
|
}
|
|
4905
4917
|
protoOf(timerMiddleware$o$handle$slambda$slambda).v12 = function ($this$launchStore, $completion) {
|
|
@@ -4918,8 +4930,8 @@
|
|
|
4918
4930
|
var tmp = this.lh_1;
|
|
4919
4931
|
if (tmp === 0) {
|
|
4920
4932
|
this.mh_1 = 1;
|
|
4921
|
-
if (this.
|
|
4922
|
-
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()));
|
|
4923
4935
|
}
|
|
4924
4936
|
return Unit_getInstance();
|
|
4925
4937
|
} else if (tmp === 1) {
|
|
@@ -4932,8 +4944,8 @@
|
|
|
4932
4944
|
while (true);
|
|
4933
4945
|
};
|
|
4934
4946
|
protoOf(timerMiddleware$o$handle$slambda$slambda).w12 = function ($this$launchStore, completion) {
|
|
4935
|
-
var i = new timerMiddleware$o$handle$slambda$slambda(this.
|
|
4936
|
-
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;
|
|
4937
4949
|
return i;
|
|
4938
4950
|
};
|
|
4939
4951
|
function timerMiddleware$o$handle$slambda$slambda_0($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
@@ -4945,9 +4957,9 @@
|
|
|
4945
4957
|
return l;
|
|
4946
4958
|
}
|
|
4947
4959
|
function timerMiddleware$o$handle$slambda$slambda_1($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
4948
|
-
this.
|
|
4949
|
-
this.
|
|
4950
|
-
this.
|
|
4960
|
+
this.m2p_1 = $jobsProvider;
|
|
4961
|
+
this.n2p_1 = $tmp0__anonymous__1nv1x1;
|
|
4962
|
+
this.o2p_1 = $store;
|
|
4951
4963
|
CoroutineImpl.call(this, resultContinuation);
|
|
4952
4964
|
}
|
|
4953
4965
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).v12 = function ($this$launchStore, $completion) {
|
|
@@ -4966,8 +4978,8 @@
|
|
|
4966
4978
|
var tmp = this.lh_1;
|
|
4967
4979
|
if (tmp === 0) {
|
|
4968
4980
|
this.mh_1 = 1;
|
|
4969
|
-
if (this.
|
|
4970
|
-
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()));
|
|
4971
4983
|
}
|
|
4972
4984
|
return Unit_getInstance();
|
|
4973
4985
|
} else if (tmp === 1) {
|
|
@@ -4980,8 +4992,8 @@
|
|
|
4980
4992
|
while (true);
|
|
4981
4993
|
};
|
|
4982
4994
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).w12 = function ($this$launchStore, completion) {
|
|
4983
|
-
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.
|
|
4984
|
-
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;
|
|
4985
4997
|
return i;
|
|
4986
4998
|
};
|
|
4987
4999
|
function timerMiddleware$o$handle$slambda$slambda_2($jobsProvider, $tmp0__anonymous__1nv1x1, $store, resultContinuation) {
|
|
@@ -4993,10 +5005,10 @@
|
|
|
4993
5005
|
return l;
|
|
4994
5006
|
}
|
|
4995
5007
|
function timerMiddleware$o$handle$slambda($tmp0__anonymous__1nv1x1, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
4996
|
-
this.
|
|
4997
|
-
this.
|
|
4998
|
-
this.
|
|
4999
|
-
this.
|
|
5008
|
+
this.y2p_1 = $tmp0__anonymous__1nv1x1;
|
|
5009
|
+
this.z2p_1 = $asyncProvider;
|
|
5010
|
+
this.a2q_1 = $jobsProvider;
|
|
5011
|
+
this.b2q_1 = $store;
|
|
5000
5012
|
CoroutineImpl.call(this, resultContinuation);
|
|
5001
5013
|
}
|
|
5002
5014
|
protoOf(timerMiddleware$o$handle$slambda).v12 = function ($this$launchWorker, $completion) {
|
|
@@ -5016,9 +5028,9 @@
|
|
|
5016
5028
|
switch (tmp) {
|
|
5017
5029
|
case 0:
|
|
5018
5030
|
this.mh_1 = 10;
|
|
5019
|
-
if (!this.
|
|
5031
|
+
if (!this.y2p_1.m2o_1.equals(new Long(0, 0)) ? this.y2p_1.n2o_1.equals(TimerType_INTERVAL_getInstance()) : false) {
|
|
5020
5032
|
this.lh_1 = 1;
|
|
5021
|
-
suspendResult = delay(this.
|
|
5033
|
+
suspendResult = delay(this.y2p_1.m2o_1, this);
|
|
5022
5034
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5023
5035
|
return suspendResult;
|
|
5024
5036
|
}
|
|
@@ -5033,20 +5045,20 @@
|
|
|
5033
5045
|
this.lh_1 = 2;
|
|
5034
5046
|
continue $sm;
|
|
5035
5047
|
case 2:
|
|
5036
|
-
this.
|
|
5037
|
-
this.
|
|
5038
|
-
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) {
|
|
5039
5051
|
this.lh_1 = 8;
|
|
5040
|
-
suspendResult = delay(this.
|
|
5052
|
+
suspendResult = delay(this.y2p_1.l2o_1, this);
|
|
5041
5053
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5042
5054
|
return suspendResult;
|
|
5043
5055
|
}
|
|
5044
5056
|
continue $sm;
|
|
5045
5057
|
} else {
|
|
5046
|
-
if (this.
|
|
5047
|
-
if (!this.
|
|
5058
|
+
if (this.e2q_1 === 1) {
|
|
5059
|
+
if (!this.y2p_1.m2o_1.equals(new Long(0, 0))) {
|
|
5048
5060
|
this.lh_1 = 3;
|
|
5049
|
-
suspendResult = delay(this.
|
|
5061
|
+
suspendResult = delay(this.y2p_1.m2o_1, this);
|
|
5050
5062
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5051
5063
|
return suspendResult;
|
|
5052
5064
|
}
|
|
@@ -5069,15 +5081,15 @@
|
|
|
5069
5081
|
this.lh_1 = 5;
|
|
5070
5082
|
continue $sm;
|
|
5071
5083
|
case 5:
|
|
5072
|
-
if (!get_isActive(this.
|
|
5084
|
+
if (!get_isActive(this.c2q_1)) {
|
|
5073
5085
|
this.lh_1 = 7;
|
|
5074
5086
|
continue $sm;
|
|
5075
5087
|
}
|
|
5076
5088
|
|
|
5077
|
-
this.
|
|
5089
|
+
this.z2p_1.c2m(VOID, timerMiddleware$o$handle$slambda$slambda_2(this.a2q_1, this.y2p_1, this.b2q_1, null));
|
|
5078
5090
|
;
|
|
5079
5091
|
this.lh_1 = 6;
|
|
5080
|
-
suspendResult = delay(this.
|
|
5092
|
+
suspendResult = delay(this.y2p_1.m2o_1, this);
|
|
5081
5093
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5082
5094
|
return suspendResult;
|
|
5083
5095
|
}
|
|
@@ -5090,7 +5102,7 @@
|
|
|
5090
5102
|
this.lh_1 = 9;
|
|
5091
5103
|
continue $sm;
|
|
5092
5104
|
case 8:
|
|
5093
|
-
this.
|
|
5105
|
+
this.z2p_1.c2m(VOID, timerMiddleware$o$handle$slambda$slambda_0(this.a2q_1, this.y2p_1, this.b2q_1, null));
|
|
5094
5106
|
;
|
|
5095
5107
|
this.lh_1 = 9;
|
|
5096
5108
|
continue $sm;
|
|
@@ -5111,8 +5123,8 @@
|
|
|
5111
5123
|
while (true);
|
|
5112
5124
|
};
|
|
5113
5125
|
protoOf(timerMiddleware$o$handle$slambda).w12 = function ($this$launchWorker, completion) {
|
|
5114
|
-
var i = new timerMiddleware$o$handle$slambda(this.
|
|
5115
|
-
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;
|
|
5116
5128
|
return i;
|
|
5117
5129
|
};
|
|
5118
5130
|
function timerMiddleware$o$handle$slambda_0($tmp0__anonymous__1nv1x1, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
@@ -5124,34 +5136,34 @@
|
|
|
5124
5136
|
return l;
|
|
5125
5137
|
}
|
|
5126
5138
|
function _no_name_provided__qut3iv_1($asyncProvider, $jobsProvider) {
|
|
5127
|
-
this.
|
|
5128
|
-
this.
|
|
5139
|
+
this.f2q_1 = $asyncProvider;
|
|
5140
|
+
this.g2q_1 = $jobsProvider;
|
|
5129
5141
|
}
|
|
5130
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5142
|
+
protoOf(_no_name_provided__qut3iv_1).b2o = function (action) {
|
|
5131
5143
|
return action instanceof TimerAction;
|
|
5132
5144
|
};
|
|
5133
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5145
|
+
protoOf(_no_name_provided__qut3iv_1).h2q = function (store, next, action) {
|
|
5134
5146
|
// Inline function 'com.logic.redux.middlewares.timers.timerMiddleware.<anonymous>' call
|
|
5135
5147
|
var tmp0__anonymous__q1qw7t = action instanceof TimerAction ? action : THROW_CCE();
|
|
5136
5148
|
var tmp0_subject = tmp0__anonymous__q1qw7t;
|
|
5137
5149
|
if (tmp0_subject instanceof StartTimerAction) {
|
|
5138
|
-
var job = this.
|
|
5139
|
-
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);
|
|
5140
5152
|
} else {
|
|
5141
5153
|
if (tmp0_subject instanceof StopTimerAction) {
|
|
5142
|
-
this.
|
|
5154
|
+
this.g2q_1.o2m(tmp0__anonymous__q1qw7t.o2o());
|
|
5143
5155
|
} else {
|
|
5144
5156
|
if (tmp0_subject instanceof TimerTickAction) {
|
|
5145
|
-
if (tmp0__anonymous__q1qw7t.
|
|
5146
|
-
this.
|
|
5157
|
+
if (tmp0__anonymous__q1qw7t.q2o_1.equals(TimerType_DELAY_getInstance())) {
|
|
5158
|
+
this.g2q_1.m2m(tmp0__anonymous__q1qw7t.o2o());
|
|
5147
5159
|
}
|
|
5148
5160
|
}
|
|
5149
5161
|
}
|
|
5150
5162
|
}
|
|
5151
5163
|
next(tmp0__anonymous__q1qw7t);
|
|
5152
5164
|
};
|
|
5153
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5154
|
-
return this.
|
|
5165
|
+
protoOf(_no_name_provided__qut3iv_1).c2o = function (store, next, action) {
|
|
5166
|
+
return this.h2q(store, next, action);
|
|
5155
5167
|
};
|
|
5156
5168
|
function enumToString(_this__u8e3s4, mapping) {
|
|
5157
5169
|
var tmp$ret$2;
|
|
@@ -5304,23 +5316,23 @@
|
|
|
5304
5316
|
Category_NONE_instance = new Category('NONE', 1, true);
|
|
5305
5317
|
}
|
|
5306
5318
|
function generateTag($this, tag) {
|
|
5307
|
-
return (!($this.
|
|
5319
|
+
return (!($this.k2q_1 == null) ? !(tag == null) : false) ? '' + $this.k2q_1 + ':' + tag : tag;
|
|
5308
5320
|
}
|
|
5309
5321
|
function Category(name, ordinal, isEnabled) {
|
|
5310
5322
|
Enum.call(this, name, ordinal);
|
|
5311
|
-
this.
|
|
5323
|
+
this.n2q_1 = isEnabled;
|
|
5312
5324
|
}
|
|
5313
5325
|
function Logger$loggerSource$1() {
|
|
5314
|
-
this.
|
|
5326
|
+
this.o2q_1 = new PlatformLogger();
|
|
5315
5327
|
}
|
|
5316
|
-
protoOf(Logger$loggerSource$1).
|
|
5317
|
-
this.
|
|
5328
|
+
protoOf(Logger$loggerSource$1).p2q = function (tag, msg) {
|
|
5329
|
+
this.o2q_1.p2q(tag, msg);
|
|
5318
5330
|
};
|
|
5319
|
-
protoOf(Logger$loggerSource$1).
|
|
5320
|
-
this.
|
|
5331
|
+
protoOf(Logger$loggerSource$1).q2q = function (tag, msg, exception) {
|
|
5332
|
+
this.o2q_1.q2q(tag, msg, exception);
|
|
5321
5333
|
};
|
|
5322
|
-
protoOf(Logger$loggerSource$1).
|
|
5323
|
-
this.
|
|
5334
|
+
protoOf(Logger$loggerSource$1).r2q = function (tag, msg) {
|
|
5335
|
+
this.o2q_1.r2q(tag, msg);
|
|
5324
5336
|
};
|
|
5325
5337
|
function Category_NONE_getInstance() {
|
|
5326
5338
|
Category_initEntries();
|
|
@@ -5329,57 +5341,57 @@
|
|
|
5329
5341
|
function Logger() {
|
|
5330
5342
|
Logger_instance = this;
|
|
5331
5343
|
var tmp = this;
|
|
5332
|
-
tmp.
|
|
5333
|
-
this.
|
|
5334
|
-
this.
|
|
5344
|
+
tmp.i2q_1 = new Logger$loggerSource$1();
|
|
5345
|
+
this.j2q_1 = true;
|
|
5346
|
+
this.k2q_1 = null;
|
|
5335
5347
|
}
|
|
5336
|
-
protoOf(Logger).
|
|
5337
|
-
this.
|
|
5348
|
+
protoOf(Logger).s2q = function (tag, message) {
|
|
5349
|
+
this.t2q(tag, message, Category_NONE_getInstance());
|
|
5338
5350
|
};
|
|
5339
|
-
protoOf(Logger).
|
|
5340
|
-
if (this.
|
|
5341
|
-
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);
|
|
5342
5354
|
}
|
|
5343
5355
|
};
|
|
5344
|
-
protoOf(Logger).
|
|
5356
|
+
protoOf(Logger).v2q = function (tag, message, category, $super) {
|
|
5345
5357
|
tag = tag === VOID ? null : tag;
|
|
5346
5358
|
category = category === VOID ? Category_NONE_getInstance() : category;
|
|
5347
5359
|
var tmp;
|
|
5348
5360
|
if ($super === VOID) {
|
|
5349
|
-
this.
|
|
5361
|
+
this.u2q(tag, message, category);
|
|
5350
5362
|
tmp = Unit_getInstance();
|
|
5351
5363
|
} else {
|
|
5352
|
-
tmp = $super.
|
|
5364
|
+
tmp = $super.u2q.call(this, tag, message, category);
|
|
5353
5365
|
}
|
|
5354
5366
|
return tmp;
|
|
5355
5367
|
};
|
|
5356
|
-
protoOf(Logger).
|
|
5357
|
-
if (this.
|
|
5358
|
-
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);
|
|
5359
5371
|
}
|
|
5360
5372
|
};
|
|
5361
|
-
protoOf(Logger).
|
|
5362
|
-
if (this.
|
|
5373
|
+
protoOf(Logger).w2q = function (tag, message, exception, category) {
|
|
5374
|
+
if (this.j2q_1 ? category.n2q_1 : false) {
|
|
5363
5375
|
var tmp0_safe_receiver = exception;
|
|
5364
5376
|
if (tmp0_safe_receiver == null)
|
|
5365
5377
|
null;
|
|
5366
5378
|
else {
|
|
5367
5379
|
printStackTrace(tmp0_safe_receiver);
|
|
5368
5380
|
}
|
|
5369
|
-
this.
|
|
5381
|
+
this.i2q_1.q2q(generateTag(this, tag), generateMsg(message, exception), exception);
|
|
5370
5382
|
}
|
|
5371
5383
|
};
|
|
5372
|
-
protoOf(Logger).
|
|
5384
|
+
protoOf(Logger).x2q = function (tag, message, exception, category, $super) {
|
|
5373
5385
|
tag = tag === VOID ? null : tag;
|
|
5374
5386
|
message = message === VOID ? null : message;
|
|
5375
5387
|
exception = exception === VOID ? null : exception;
|
|
5376
5388
|
category = category === VOID ? Category_NONE_getInstance() : category;
|
|
5377
5389
|
var tmp;
|
|
5378
5390
|
if ($super === VOID) {
|
|
5379
|
-
this.
|
|
5391
|
+
this.w2q(tag, message, exception, category);
|
|
5380
5392
|
tmp = Unit_getInstance();
|
|
5381
5393
|
} else {
|
|
5382
|
-
tmp = $super.
|
|
5394
|
+
tmp = $super.w2q.call(this, tag, message, exception, category);
|
|
5383
5395
|
}
|
|
5384
5396
|
return tmp;
|
|
5385
5397
|
};
|
|
@@ -5417,11 +5429,11 @@
|
|
|
5417
5429
|
return tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
|
|
5418
5430
|
}
|
|
5419
5431
|
function CombinedGameLogger(logOutputs) {
|
|
5420
|
-
this.
|
|
5432
|
+
this.y2q_1 = logOutputs;
|
|
5421
5433
|
}
|
|
5422
|
-
protoOf(CombinedGameLogger).
|
|
5434
|
+
protoOf(CombinedGameLogger).z2q = function (tag, message, payload) {
|
|
5423
5435
|
// Inline function 'kotlin.collections.forEach' call
|
|
5424
|
-
var tmp0_forEach = this.
|
|
5436
|
+
var tmp0_forEach = this.y2q_1;
|
|
5425
5437
|
var tmp0_iterator = tmp0_forEach.f();
|
|
5426
5438
|
while (tmp0_iterator.g()) {
|
|
5427
5439
|
var element = tmp0_iterator.h();
|
|
@@ -5429,9 +5441,9 @@
|
|
|
5429
5441
|
element.d(tag, message, payload);
|
|
5430
5442
|
}
|
|
5431
5443
|
};
|
|
5432
|
-
protoOf(CombinedGameLogger).
|
|
5444
|
+
protoOf(CombinedGameLogger).a2r = function (tag, message, exception, payload) {
|
|
5433
5445
|
// Inline function 'kotlin.collections.forEach' call
|
|
5434
|
-
var tmp0_forEach = this.
|
|
5446
|
+
var tmp0_forEach = this.y2q_1;
|
|
5435
5447
|
var tmp0_iterator = tmp0_forEach.f();
|
|
5436
5448
|
while (tmp0_iterator.g()) {
|
|
5437
5449
|
var element = tmp0_iterator.h();
|
|
@@ -5439,9 +5451,9 @@
|
|
|
5439
5451
|
element.e(tag, message, exception, payload);
|
|
5440
5452
|
}
|
|
5441
5453
|
};
|
|
5442
|
-
protoOf(CombinedGameLogger).
|
|
5454
|
+
protoOf(CombinedGameLogger).b2r = function (tag, message, payload) {
|
|
5443
5455
|
// Inline function 'kotlin.collections.forEach' call
|
|
5444
|
-
var tmp0_forEach = this.
|
|
5456
|
+
var tmp0_forEach = this.y2q_1;
|
|
5445
5457
|
var tmp0_iterator = tmp0_forEach.f();
|
|
5446
5458
|
while (tmp0_iterator.g()) {
|
|
5447
5459
|
var element = tmp0_iterator.h();
|
|
@@ -5455,36 +5467,36 @@
|
|
|
5455
5467
|
}
|
|
5456
5468
|
function PlatformGameLogger(enabled) {
|
|
5457
5469
|
enabled = enabled === VOID ? true : enabled;
|
|
5458
|
-
this.
|
|
5470
|
+
this.c2r_1 = enabled;
|
|
5459
5471
|
}
|
|
5460
|
-
protoOf(PlatformGameLogger).
|
|
5461
|
-
this.
|
|
5472
|
+
protoOf(PlatformGameLogger).d2r = function (_set____db54di) {
|
|
5473
|
+
this.c2r_1 = _set____db54di;
|
|
5462
5474
|
};
|
|
5463
|
-
protoOf(PlatformGameLogger).
|
|
5464
|
-
return this.
|
|
5475
|
+
protoOf(PlatformGameLogger).e2r = function () {
|
|
5476
|
+
return this.c2r_1;
|
|
5465
5477
|
};
|
|
5466
|
-
protoOf(PlatformGameLogger).
|
|
5467
|
-
if (!this.
|
|
5478
|
+
protoOf(PlatformGameLogger).z2q = function (tag, message, payload) {
|
|
5479
|
+
if (!this.c2r_1)
|
|
5468
5480
|
return Unit_getInstance();
|
|
5469
|
-
Logger_getInstance().
|
|
5481
|
+
Logger_getInstance().s2q(tag, message);
|
|
5470
5482
|
};
|
|
5471
|
-
protoOf(PlatformGameLogger).
|
|
5472
|
-
if (!this.
|
|
5483
|
+
protoOf(PlatformGameLogger).a2r = function (tag, message, exception, payload) {
|
|
5484
|
+
if (!this.c2r_1)
|
|
5473
5485
|
return Unit_getInstance();
|
|
5474
|
-
Logger_getInstance().
|
|
5486
|
+
Logger_getInstance().x2q(tag, message, exception);
|
|
5475
5487
|
};
|
|
5476
|
-
protoOf(PlatformGameLogger).
|
|
5477
|
-
if (!this.
|
|
5488
|
+
protoOf(PlatformGameLogger).b2r = function (tag, message, payload) {
|
|
5489
|
+
if (!this.c2r_1)
|
|
5478
5490
|
return Unit_getInstance();
|
|
5479
|
-
Logger_getInstance().
|
|
5491
|
+
Logger_getInstance().v2q(tag, message);
|
|
5480
5492
|
};
|
|
5481
5493
|
defineProp(protoOf(PlatformGameLogger), 'enabled', function () {
|
|
5482
|
-
return this.
|
|
5494
|
+
return this.e2r();
|
|
5483
5495
|
}, function (value) {
|
|
5484
|
-
this.
|
|
5496
|
+
this.d2r(value);
|
|
5485
5497
|
});
|
|
5486
5498
|
function _get_$cachedSerializer__te6jhj_9($this) {
|
|
5487
|
-
return $this.
|
|
5499
|
+
return $this.f2r_1.j1();
|
|
5488
5500
|
}
|
|
5489
5501
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
5490
5502
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_4());
|
|
@@ -5496,7 +5508,7 @@
|
|
|
5496
5508
|
Companion_instance_19 = this;
|
|
5497
5509
|
var tmp = this;
|
|
5498
5510
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
5499
|
-
tmp.
|
|
5511
|
+
tmp.f2r_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
5500
5512
|
}
|
|
5501
5513
|
protoOf(Companion_19).serializer = function () {
|
|
5502
5514
|
return _get_$cachedSerializer__te6jhj_9(this);
|
|
@@ -5574,7 +5586,7 @@
|
|
|
5574
5586
|
tmp$ret$0 = tmp0_arrayOf;
|
|
5575
5587
|
tmp$ret$1 = tmp$ret$0;
|
|
5576
5588
|
tmp$ret$2 = tmp$ret$1;
|
|
5577
|
-
tmp.
|
|
5589
|
+
tmp.j2r_1 = tmp$ret$2;
|
|
5578
5590
|
}
|
|
5579
5591
|
protoOf(Companion_20).serializer = function () {
|
|
5580
5592
|
return $serializer_getInstance_8();
|
|
@@ -5592,13 +5604,13 @@
|
|
|
5592
5604
|
tmp0_serialDesc.f1m('tag', false);
|
|
5593
5605
|
tmp0_serialDesc.f1m('message', false);
|
|
5594
5606
|
tmp0_serialDesc.f1m('stackTrace', false);
|
|
5595
|
-
this.
|
|
5607
|
+
this.k2r_1 = tmp0_serialDesc;
|
|
5596
5608
|
}
|
|
5597
5609
|
protoOf($serializer_8).t1b = function () {
|
|
5598
|
-
return this.
|
|
5610
|
+
return this.k2r_1;
|
|
5599
5611
|
};
|
|
5600
5612
|
protoOf($serializer_8).u1m = function () {
|
|
5601
|
-
var tmp0_cached = Companion_getInstance_21().
|
|
5613
|
+
var tmp0_cached = Companion_getInstance_21().j2r_1;
|
|
5602
5614
|
var tmp$ret$2;
|
|
5603
5615
|
// Inline function 'kotlin.arrayOf' call
|
|
5604
5616
|
var tmp0_arrayOf = [tmp0_cached[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
@@ -5612,7 +5624,7 @@
|
|
|
5612
5624
|
return tmp$ret$2;
|
|
5613
5625
|
};
|
|
5614
5626
|
protoOf($serializer_8).v1b = function (decoder) {
|
|
5615
|
-
var tmp0_desc = this.
|
|
5627
|
+
var tmp0_desc = this.k2r_1;
|
|
5616
5628
|
var tmp1_flag = true;
|
|
5617
5629
|
var tmp2_index = 0;
|
|
5618
5630
|
var tmp3_bitMask0 = 0;
|
|
@@ -5621,7 +5633,7 @@
|
|
|
5621
5633
|
var tmp6_local2 = null;
|
|
5622
5634
|
var tmp7_local3 = null;
|
|
5623
5635
|
var tmp8_input = decoder.a1f(tmp0_desc);
|
|
5624
|
-
var tmp9_cached = Companion_getInstance_21().
|
|
5636
|
+
var tmp9_cached = Companion_getInstance_21().j2r_1;
|
|
5625
5637
|
if (tmp8_input.q1f()) {
|
|
5626
5638
|
tmp4_local0 = tmp8_input.m1f(tmp0_desc, 0, tmp9_cached[0], tmp4_local0);
|
|
5627
5639
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -5661,10 +5673,10 @@
|
|
|
5661
5673
|
tmp8_input.b1f(tmp0_desc);
|
|
5662
5674
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
|
|
5663
5675
|
};
|
|
5664
|
-
protoOf($serializer_8).
|
|
5665
|
-
var tmp0_desc = this.
|
|
5676
|
+
protoOf($serializer_8).l2r = function (encoder, value) {
|
|
5677
|
+
var tmp0_desc = this.k2r_1;
|
|
5666
5678
|
var tmp1_output = encoder.a1f(tmp0_desc);
|
|
5667
|
-
var tmp2_cached = Companion_getInstance_21().
|
|
5679
|
+
var tmp2_cached = Companion_getInstance_21().j2r_1;
|
|
5668
5680
|
tmp1_output.r1g(tmp0_desc, 0, tmp2_cached[0], value.type);
|
|
5669
5681
|
tmp1_output.t1g(tmp0_desc, 1, StringSerializer_getInstance(), value.tag);
|
|
5670
5682
|
tmp1_output.t1g(tmp0_desc, 2, StringSerializer_getInstance(), value.message);
|
|
@@ -5672,7 +5684,7 @@
|
|
|
5672
5684
|
tmp1_output.b1f(tmp0_desc);
|
|
5673
5685
|
};
|
|
5674
5686
|
protoOf($serializer_8).u1b = function (encoder, value) {
|
|
5675
|
-
return this.
|
|
5687
|
+
return this.l2r(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
5676
5688
|
};
|
|
5677
5689
|
var $serializer_instance_8;
|
|
5678
5690
|
function $serializer_getInstance_8() {
|
|
@@ -5682,7 +5694,7 @@
|
|
|
5682
5694
|
}
|
|
5683
5695
|
function LoggerOutputDataDto_init_$Init$(seen1, type, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
5684
5696
|
if (!(15 === (15 & seen1))) {
|
|
5685
|
-
throwMissingFieldException(seen1, 15, $serializer_getInstance_8().
|
|
5697
|
+
throwMissingFieldException(seen1, 15, $serializer_getInstance_8().k2r_1);
|
|
5686
5698
|
}
|
|
5687
5699
|
$this.type = type;
|
|
5688
5700
|
$this.tag = tag;
|
|
@@ -5703,13 +5715,13 @@
|
|
|
5703
5715
|
protoOf(LoggerOutputDataDto).s28 = function () {
|
|
5704
5716
|
return this.type;
|
|
5705
5717
|
};
|
|
5706
|
-
protoOf(LoggerOutputDataDto).
|
|
5718
|
+
protoOf(LoggerOutputDataDto).m2r = function () {
|
|
5707
5719
|
return this.tag;
|
|
5708
5720
|
};
|
|
5709
5721
|
protoOf(LoggerOutputDataDto).y8 = function () {
|
|
5710
5722
|
return this.message;
|
|
5711
5723
|
};
|
|
5712
|
-
protoOf(LoggerOutputDataDto).
|
|
5724
|
+
protoOf(LoggerOutputDataDto).n2r = function () {
|
|
5713
5725
|
return this.stackTrace;
|
|
5714
5726
|
};
|
|
5715
5727
|
protoOf(LoggerOutputDataDto).t3 = function () {
|
|
@@ -5724,7 +5736,7 @@
|
|
|
5724
5736
|
protoOf(LoggerOutputDataDto).a2g = function () {
|
|
5725
5737
|
return this.stackTrace;
|
|
5726
5738
|
};
|
|
5727
|
-
protoOf(LoggerOutputDataDto).
|
|
5739
|
+
protoOf(LoggerOutputDataDto).o2r = function (type, tag, message, stackTrace) {
|
|
5728
5740
|
return new LoggerOutputDataDto(type, tag, message, stackTrace);
|
|
5729
5741
|
};
|
|
5730
5742
|
protoOf(LoggerOutputDataDto).copy = function (type, tag, message, stackTrace, $super) {
|
|
@@ -5732,7 +5744,7 @@
|
|
|
5732
5744
|
tag = tag === VOID ? this.tag : tag;
|
|
5733
5745
|
message = message === VOID ? this.message : message;
|
|
5734
5746
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
5735
|
-
return this.
|
|
5747
|
+
return this.o2r(type, tag, message, stackTrace);
|
|
5736
5748
|
};
|
|
5737
5749
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
5738
5750
|
return 'LoggerOutputDataDto(type=' + this.type + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -5762,17 +5774,17 @@
|
|
|
5762
5774
|
};
|
|
5763
5775
|
function PlatformLogger() {
|
|
5764
5776
|
}
|
|
5765
|
-
protoOf(PlatformLogger).
|
|
5777
|
+
protoOf(PlatformLogger).p2q = function (tag, msg) {
|
|
5766
5778
|
console.log(getLogTag(tag) + ': ' + msg);
|
|
5767
5779
|
};
|
|
5768
|
-
protoOf(PlatformLogger).
|
|
5780
|
+
protoOf(PlatformLogger).q2q = function (tag, msg, exception) {
|
|
5769
5781
|
if (!(exception == null)) {
|
|
5770
5782
|
console.error(getLogTag(tag) + ': ' + msg + ', exception: ' + exception);
|
|
5771
5783
|
} else {
|
|
5772
5784
|
console.error(getLogTag(tag) + ': ' + msg);
|
|
5773
5785
|
}
|
|
5774
5786
|
};
|
|
5775
|
-
protoOf(PlatformLogger).
|
|
5787
|
+
protoOf(PlatformLogger).r2q = function (tag, msg) {
|
|
5776
5788
|
console.warn(getLogTag(tag) + ': ' + msg);
|
|
5777
5789
|
};
|
|
5778
5790
|
//region block: post-declaration
|
|
@@ -5790,14 +5802,14 @@
|
|
|
5790
5802
|
protoOf(_no_name_provided__qut3iv).d5 = fold;
|
|
5791
5803
|
protoOf(_no_name_provided__qut3iv).c5 = minusKey;
|
|
5792
5804
|
protoOf(_no_name_provided__qut3iv).e5 = plus;
|
|
5793
|
-
protoOf(AsyncProviderImpl).
|
|
5794
|
-
protoOf(AsyncProviderImpl).
|
|
5795
|
-
protoOf(AsyncProviderImpl).
|
|
5805
|
+
protoOf(AsyncProviderImpl).c2m = launchStore$default;
|
|
5806
|
+
protoOf(AsyncProviderImpl).e2m = launchWorker$default;
|
|
5807
|
+
protoOf(AsyncProviderImpl).g2m = launchWorkerWithLock$default;
|
|
5796
5808
|
protoOf(ActionTypes).z2i = get_actionTag;
|
|
5797
5809
|
protoOf(INIT).z2i = get_actionTag;
|
|
5798
5810
|
protoOf(REPLACE).z2i = get_actionTag;
|
|
5799
|
-
protoOf(middleware$1).
|
|
5800
|
-
protoOf(combineReducers$1).
|
|
5811
|
+
protoOf(middleware$1).b2o = canHandle;
|
|
5812
|
+
protoOf(combineReducers$1).b2o = canHandle_0;
|
|
5801
5813
|
protoOf(TimerAction).z2i = get_actionTag;
|
|
5802
5814
|
protoOf(StartTimerAction).z2i = get_actionTag;
|
|
5803
5815
|
protoOf(TimerTickAction).z2i = get_actionTag;
|