game_client_logic_deb 1.3.73 → 1.3.76

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.
@@ -303,8 +303,6 @@
303
303
  UndeliveredElementException.prototype.constructor = UndeliveredElementException;
304
304
  ScopeCoroutine.prototype = Object.create(AbstractCoroutine.prototype);
305
305
  ScopeCoroutine.prototype.constructor = ScopeCoroutine;
306
- LockedQueue.prototype = Object.create(LinkedListHead.prototype);
307
- LockedQueue.prototype.constructor = LockedQueue;
308
306
  JsMainDispatcher.prototype = Object.create(MainCoroutineDispatcher.prototype);
309
307
  JsMainDispatcher.prototype.constructor = JsMainDispatcher;
310
308
  UnconfinedEventLoop.prototype = Object.create(EventLoop.prototype);
@@ -6493,6 +6491,9 @@
6493
6491
  return PENDING;
6494
6492
  }
6495
6493
  var PENDING;
6494
+ function StateFlow() {
6495
+ }
6496
+ StateFlow.$metadata$ = interfaceMeta('StateFlow', [SharedFlow]);
6496
6497
  function MutableStateFlow() {
6497
6498
  }
6498
6499
  MutableStateFlow.$metadata$ = interfaceMeta('MutableStateFlow', [StateFlow, MutableSharedFlow]);
@@ -6501,9 +6502,6 @@
6501
6502
  var tmp0_elvis_lhs = value;
6502
6503
  return new StateFlowImpl(tmp0_elvis_lhs == null ? get_NULL() : tmp0_elvis_lhs);
6503
6504
  }
6504
- function StateFlow() {
6505
- }
6506
- StateFlow.$metadata$ = interfaceMeta('StateFlow', [SharedFlow]);
6507
6505
  function updateState($this, expectedState, newState) {
6508
6506
  var curSequence = 0;
6509
6507
  var curSlots = $this.r10_1;
@@ -10006,99 +10004,6 @@
10006
10004
  function SelectClause0() {
10007
10005
  }
10008
10006
  SelectClause0.$metadata$ = interfaceMeta('SelectClause0');
10009
- function SelectClause2() {
10010
- }
10011
- SelectClause2.$metadata$ = interfaceMeta('SelectClause2');
10012
- var LOCK_FAIL;
10013
- var UNLOCK_FAIL;
10014
- function get_LOCKED() {
10015
- init_properties_Mutex_kt_ho0aqz();
10016
- return LOCKED;
10017
- }
10018
- var LOCKED;
10019
- function get_UNLOCKED() {
10020
- init_properties_Mutex_kt_ho0aqz();
10021
- return UNLOCKED;
10022
- }
10023
- var UNLOCKED;
10024
- function get_EMPTY_LOCKED() {
10025
- init_properties_Mutex_kt_ho0aqz();
10026
- return EMPTY_LOCKED;
10027
- }
10028
- var EMPTY_LOCKED;
10029
- function get_EMPTY_UNLOCKED() {
10030
- init_properties_Mutex_kt_ho0aqz();
10031
- return EMPTY_UNLOCKED;
10032
- }
10033
- var EMPTY_UNLOCKED;
10034
- function Empty_0(locked) {
10035
- this.r1g_1 = locked;
10036
- }
10037
- Empty_0.prototype.s1g = function () {
10038
- return this.r1g_1;
10039
- };
10040
- Empty_0.prototype.toString = function () {
10041
- return 'Empty[' + toString_0(this.r1g_1) + ']';
10042
- };
10043
- Empty_0.$metadata$ = classMeta('Empty');
10044
- function Mutex() {
10045
- }
10046
- Mutex.$metadata$ = interfaceMeta('Mutex');
10047
- function Mutex_0(locked) {
10048
- init_properties_Mutex_kt_ho0aqz();
10049
- return new MutexImpl(locked);
10050
- }
10051
- function Mutex$default(locked, $mask0, $handler) {
10052
- if (!(($mask0 & 1) === 0))
10053
- locked = false;
10054
- return Mutex_0(locked);
10055
- }
10056
- function LockedQueue() {
10057
- }
10058
- LockedQueue.prototype.x1g = function () {
10059
- return this.w1g_1;
10060
- };
10061
- LockedQueue.$metadata$ = classMeta('LockedQueue', undefined, undefined, undefined, undefined, LinkedListHead.prototype);
10062
- function MutexImpl(locked) {
10063
- this.y1g_1 = atomic$ref$1(locked ? get_EMPTY_LOCKED() : get_EMPTY_UNLOCKED());
10064
- }
10065
- MutexImpl.prototype.toString = function () {
10066
- // Inline function 'kotlinx.atomicfu.loop' call
10067
- var tmp0_loop = this.y1g_1;
10068
- while (true) {
10069
- // Inline function 'kotlinx.coroutines.sync.MutexImpl.toString.<anonymous>' call
10070
- var tmp1__anonymous__uwfjfc = tmp0_loop.tk_1;
10071
- var tmp0_subject = tmp1__anonymous__uwfjfc;
10072
- if (tmp0_subject instanceof Empty_0)
10073
- return 'Mutex[' + toString_0(tmp1__anonymous__uwfjfc.r1g_1) + ']';
10074
- else {
10075
- if (tmp0_subject instanceof OpDescriptor) {
10076
- tmp1__anonymous__uwfjfc.dt(this);
10077
- } else {
10078
- if (tmp0_subject instanceof LockedQueue)
10079
- return 'Mutex[' + toString_0(tmp1__anonymous__uwfjfc.w1g_1) + ']';
10080
- else {
10081
- var tmp0_error = 'Illegal state ' + toString(tmp1__anonymous__uwfjfc);
10082
- throw IllegalStateException_init_$Create$(toString_0(tmp0_error));
10083
- }
10084
- }
10085
- }
10086
- }
10087
- };
10088
- MutexImpl.$metadata$ = classMeta('MutexImpl', [Mutex, SelectClause2]);
10089
- var properties_initialized_Mutex_kt_yv4p3j;
10090
- function init_properties_Mutex_kt_ho0aqz() {
10091
- if (properties_initialized_Mutex_kt_yv4p3j) {
10092
- } else {
10093
- properties_initialized_Mutex_kt_yv4p3j = true;
10094
- LOCK_FAIL = new Symbol('LOCK_FAIL');
10095
- UNLOCK_FAIL = new Symbol('UNLOCK_FAIL');
10096
- LOCKED = new Symbol('LOCKED');
10097
- UNLOCKED = new Symbol('UNLOCKED');
10098
- EMPTY_LOCKED = new Empty_0(get_LOCKED());
10099
- EMPTY_UNLOCKED = new Empty_0(get_UNLOCKED());
10100
- }
10101
- }
10102
10007
  function CompletionHandlerBase() {
10103
10008
  LinkedListNode.call(this);
10104
10009
  }
@@ -10238,22 +10143,22 @@
10238
10143
  }
10239
10144
  function JsMainDispatcher(delegate, invokeImmediately) {
10240
10145
  MainCoroutineDispatcher.call(this);
10241
- this.a1h_1 = delegate;
10242
- this.b1h_1 = invokeImmediately;
10243
- this.c1h_1 = this.b1h_1 ? this : new JsMainDispatcher(this.a1h_1, true);
10146
+ this.s1g_1 = delegate;
10147
+ this.t1g_1 = invokeImmediately;
10148
+ this.u1g_1 = this.t1g_1 ? this : new JsMainDispatcher(this.s1g_1, true);
10244
10149
  }
10245
10150
  JsMainDispatcher.prototype.fu = function () {
10246
- return this.c1h_1;
10151
+ return this.u1g_1;
10247
10152
  };
10248
10153
  JsMainDispatcher.prototype.bq = function (context) {
10249
- return !this.b1h_1;
10154
+ return !this.t1g_1;
10250
10155
  };
10251
10156
  JsMainDispatcher.prototype.cq = function (context, block) {
10252
- return this.a1h_1.cq(context, block);
10157
+ return this.s1g_1.cq(context, block);
10253
10158
  };
10254
10159
  JsMainDispatcher.prototype.toString = function () {
10255
10160
  var tmp0_elvis_lhs = this.gu();
10256
- return tmp0_elvis_lhs == null ? this.a1h_1.toString() : tmp0_elvis_lhs;
10161
+ return tmp0_elvis_lhs == null ? this.s1g_1.toString() : tmp0_elvis_lhs;
10257
10162
  };
10258
10163
  JsMainDispatcher.$metadata$ = classMeta('JsMainDispatcher', undefined, undefined, undefined, undefined, MainCoroutineDispatcher.prototype);
10259
10164
  function createEventLoop() {
@@ -10271,11 +10176,11 @@
10271
10176
  }
10272
10177
  function JobCancellationException(message, cause, job) {
10273
10178
  CancellationException_init_$Init$(message, cause, this);
10274
- this.h1h_1 = job;
10179
+ this.z1g_1 = job;
10275
10180
  captureStack(this, JobCancellationException);
10276
10181
  }
10277
10182
  JobCancellationException.prototype.toString = function () {
10278
- return CancellationException.prototype.toString.call(this) + '; job=' + this.h1h_1;
10183
+ return CancellationException.prototype.toString.call(this) + '; job=' + this.z1g_1;
10279
10184
  };
10280
10185
  JobCancellationException.prototype.equals = function (other) {
10281
10186
  var tmp;
@@ -10291,7 +10196,7 @@
10291
10196
  tmp_2 = false;
10292
10197
  }
10293
10198
  if (tmp_2) {
10294
- tmp_1 = equals(other.h1h_1, this.h1h_1);
10199
+ tmp_1 = equals(other.z1g_1, this.z1g_1);
10295
10200
  } else {
10296
10201
  tmp_1 = false;
10297
10202
  }
@@ -10305,7 +10210,7 @@
10305
10210
  return tmp;
10306
10211
  };
10307
10212
  JobCancellationException.prototype.hashCode = function () {
10308
- var tmp = imul(imul(getStringHashCode(ensureNotNull(this.message)), 31) + hashCode(this.h1h_1) | 0, 31);
10213
+ var tmp = imul(imul(getStringHashCode(ensureNotNull(this.message)), 31) + hashCode(this.z1g_1) | 0, 31);
10309
10214
  var tmp0_safe_receiver = this.cause;
10310
10215
  var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : hashCode(tmp0_safe_receiver);
10311
10216
  return tmp + (tmp1_elvis_lhs == null ? 0 : tmp1_elvis_lhs) | 0;
@@ -10317,8 +10222,8 @@
10317
10222
  NodeDispatcher_instance = this;
10318
10223
  SetTimeoutBasedDispatcher.call(this);
10319
10224
  }
10320
- NodeDispatcher.prototype.k1h = function () {
10321
- process.nextTick(this.t1h_1.q1h_1);
10225
+ NodeDispatcher.prototype.c1h = function () {
10226
+ process.nextTick(this.l1h_1.i1h_1);
10322
10227
  };
10323
10228
  NodeDispatcher.$metadata$ = objectMeta('NodeDispatcher', undefined, undefined, undefined, undefined, SetTimeoutBasedDispatcher.prototype);
10324
10229
  var NodeDispatcher_instance;
@@ -10331,8 +10236,8 @@
10331
10236
  SetTimeoutDispatcher_instance = this;
10332
10237
  SetTimeoutBasedDispatcher.call(this);
10333
10238
  }
10334
- SetTimeoutDispatcher.prototype.k1h = function () {
10335
- setTimeout(this.t1h_1.q1h_1, 0);
10239
+ SetTimeoutDispatcher.prototype.c1h = function () {
10240
+ setTimeout(this.l1h_1.i1h_1, 0);
10336
10241
  };
10337
10242
  SetTimeoutDispatcher.$metadata$ = objectMeta('SetTimeoutDispatcher', undefined, undefined, undefined, undefined, SetTimeoutBasedDispatcher.prototype);
10338
10243
  var SetTimeoutDispatcher_instance;
@@ -10343,21 +10248,21 @@
10343
10248
  }
10344
10249
  function SetTimeoutBasedDispatcher$ScheduledMessageQueue$processQueue$lambda(this$0) {
10345
10250
  return function () {
10346
- this$0.b1i();
10251
+ this$0.t1h();
10347
10252
  return Unit_getInstance();
10348
10253
  };
10349
10254
  }
10350
10255
  function ScheduledMessageQueue($outer) {
10351
- this.r1h_1 = $outer;
10256
+ this.j1h_1 = $outer;
10352
10257
  MessageQueue.call(this);
10353
10258
  var tmp = this;
10354
- tmp.q1h_1 = SetTimeoutBasedDispatcher$ScheduledMessageQueue$processQueue$lambda(this);
10259
+ tmp.i1h_1 = SetTimeoutBasedDispatcher$ScheduledMessageQueue$processQueue$lambda(this);
10355
10260
  }
10356
- ScheduledMessageQueue.prototype.c1i = function () {
10357
- this.r1h_1.k1h();
10261
+ ScheduledMessageQueue.prototype.u1h = function () {
10262
+ this.j1h_1.c1h();
10358
10263
  };
10359
- ScheduledMessageQueue.prototype.d1i = function () {
10360
- setTimeout(this.q1h_1, 0);
10264
+ ScheduledMessageQueue.prototype.v1h = function () {
10265
+ setTimeout(this.i1h_1, 0);
10361
10266
  };
10362
10267
  ScheduledMessageQueue.$metadata$ = classMeta('ScheduledMessageQueue', undefined, undefined, undefined, undefined, MessageQueue.prototype);
10363
10268
  function SetTimeoutBasedDispatcher$scheduleResumeAfterDelay$lambda($continuation, this$0) {
@@ -10372,10 +10277,10 @@
10372
10277
  }
10373
10278
  function SetTimeoutBasedDispatcher() {
10374
10279
  CoroutineDispatcher.call(this);
10375
- this.t1h_1 = new ScheduledMessageQueue(this);
10280
+ this.l1h_1 = new ScheduledMessageQueue(this);
10376
10281
  }
10377
10282
  SetTimeoutBasedDispatcher.prototype.cq = function (context, block) {
10378
- this.t1h_1.e1i(block);
10283
+ this.l1h_1.w1h(block);
10379
10284
  };
10380
10285
  SetTimeoutBasedDispatcher.prototype.hq = function (timeMillis, continuation) {
10381
10286
  var handle = setTimeout(SetTimeoutBasedDispatcher$scheduleResumeAfterDelay$lambda(continuation, this), delayToInt(timeMillis));
@@ -10391,20 +10296,20 @@
10391
10296
  SetTimeoutBasedDispatcher.$metadata$ = classMeta('SetTimeoutBasedDispatcher', [Delay], undefined, undefined, undefined, CoroutineDispatcher.prototype);
10392
10297
  function MessageQueue() {
10393
10298
  ArrayQueue.call(this);
10394
- this.z1h_1 = 16;
10395
- this.a1i_1 = false;
10299
+ this.r1h_1 = 16;
10300
+ this.s1h_1 = false;
10396
10301
  }
10397
- MessageQueue.prototype.e1i = function (element) {
10302
+ MessageQueue.prototype.w1h = function (element) {
10398
10303
  this.sq(element);
10399
- if (!this.a1i_1) {
10400
- this.a1i_1 = true;
10401
- this.c1i();
10304
+ if (!this.s1h_1) {
10305
+ this.s1h_1 = true;
10306
+ this.u1h();
10402
10307
  }
10403
10308
  };
10404
- MessageQueue.prototype.b1i = function () {
10309
+ MessageQueue.prototype.t1h = function () {
10405
10310
  try {
10406
10311
  // Inline function 'kotlin.repeat' call
10407
- var tmp0_repeat = this.z1h_1;
10312
+ var tmp0_repeat = this.r1h_1;
10408
10313
  // Inline function 'kotlin.contracts.contract' call
10409
10314
  var inductionVariable = 0;
10410
10315
  if (inductionVariable < tmp0_repeat)
@@ -10425,9 +10330,9 @@
10425
10330
  while (inductionVariable < tmp0_repeat);
10426
10331
  }finally {
10427
10332
  if (this.vq()) {
10428
- this.a1i_1 = false;
10333
+ this.s1h_1 = false;
10429
10334
  } else {
10430
- this.d1i();
10335
+ this.v1h();
10431
10336
  }
10432
10337
  }
10433
10338
  };
@@ -10437,10 +10342,10 @@
10437
10342
  }
10438
10343
  function ClearTimeout(handle) {
10439
10344
  CancelHandler.call(this);
10440
- this.f1i_1 = handle;
10345
+ this.x1h_1 = handle;
10441
10346
  }
10442
10347
  ClearTimeout.prototype.rn = function () {
10443
- clearTimeout(this.f1i_1);
10348
+ clearTimeout(this.x1h_1);
10444
10349
  };
10445
10350
  ClearTimeout.prototype.qn = function (cause) {
10446
10351
  this.rn();
@@ -10449,7 +10354,7 @@
10449
10354
  return this.qn(cause);
10450
10355
  };
10451
10356
  ClearTimeout.prototype.toString = function () {
10452
- return 'ClearTimeout[' + this.f1i_1 + ']';
10357
+ return 'ClearTimeout[' + this.x1h_1 + ']';
10453
10358
  };
10454
10359
  ClearTimeout.$metadata$ = classMeta('ClearTimeout', [DisposableHandle], undefined, undefined, undefined, CancelHandler.prototype);
10455
10360
  function WindowDispatcher$scheduleResumeAfterDelay$lambda($continuation, this$0) {
@@ -10464,22 +10369,22 @@
10464
10369
  }
10465
10370
  function WindowDispatcher(window_0) {
10466
10371
  CoroutineDispatcher.call(this);
10467
- this.h1i_1 = window_0;
10468
- this.i1i_1 = new WindowMessageQueue(this.h1i_1);
10372
+ this.z1h_1 = window_0;
10373
+ this.a1i_1 = new WindowMessageQueue(this.z1h_1);
10469
10374
  }
10470
10375
  WindowDispatcher.prototype.cq = function (context, block) {
10471
- return this.i1i_1.e1i(block);
10376
+ return this.a1i_1.w1h(block);
10472
10377
  };
10473
10378
  WindowDispatcher.prototype.hq = function (timeMillis, continuation) {
10474
- this.h1i_1.setTimeout(WindowDispatcher$scheduleResumeAfterDelay$lambda(continuation, this), delayToInt(timeMillis));
10379
+ this.z1h_1.setTimeout(WindowDispatcher$scheduleResumeAfterDelay$lambda(continuation, this), delayToInt(timeMillis));
10475
10380
  };
10476
10381
  WindowDispatcher.$metadata$ = classMeta('WindowDispatcher', [Delay], undefined, undefined, undefined, CoroutineDispatcher.prototype);
10477
10382
  function WindowMessageQueue$lambda(this$0) {
10478
10383
  return function (event) {
10479
10384
  var tmp;
10480
- if (event.source == this$0.o1i_1 ? event.data == this$0.p1i_1 : false) {
10385
+ if (event.source == this$0.g1i_1 ? event.data == this$0.h1i_1 : false) {
10481
10386
  event.stopPropagation();
10482
- this$0.b1i();
10387
+ this$0.t1h();
10483
10388
  tmp = Unit_getInstance();
10484
10389
  }
10485
10390
  return Unit_getInstance();
@@ -10487,22 +10392,22 @@
10487
10392
  }
10488
10393
  function WindowMessageQueue$schedule$lambda(this$0) {
10489
10394
  return function (it) {
10490
- this$0.b1i();
10395
+ this$0.t1h();
10491
10396
  return Unit_getInstance();
10492
10397
  };
10493
10398
  }
10494
10399
  function WindowMessageQueue(window_0) {
10495
10400
  MessageQueue.call(this);
10496
- this.o1i_1 = window_0;
10497
- this.p1i_1 = 'dispatchCoroutine';
10498
- this.o1i_1.addEventListener('message', WindowMessageQueue$lambda(this), true);
10401
+ this.g1i_1 = window_0;
10402
+ this.h1i_1 = 'dispatchCoroutine';
10403
+ this.g1i_1.addEventListener('message', WindowMessageQueue$lambda(this), true);
10499
10404
  }
10500
- WindowMessageQueue.prototype.c1i = function () {
10405
+ WindowMessageQueue.prototype.u1h = function () {
10501
10406
  var tmp = Promise.resolve(Unit_getInstance());
10502
10407
  tmp.then(WindowMessageQueue$schedule$lambda(this));
10503
10408
  };
10504
- WindowMessageQueue.prototype.d1i = function () {
10505
- this.o1i_1.postMessage(this.p1i_1, '*');
10409
+ WindowMessageQueue.prototype.v1h = function () {
10410
+ this.g1i_1.postMessage(this.h1i_1, '*');
10506
10411
  };
10507
10412
  WindowMessageQueue.$metadata$ = classMeta('WindowMessageQueue', undefined, undefined, undefined, undefined, MessageQueue.prototype);
10508
10413
  function Runnable() {
@@ -10812,21 +10717,20 @@
10812
10717
  _.$_$.a = emitAll_0;
10813
10718
  _.$_$.b = delay;
10814
10719
  _.$_$.c = MutableSharedFlow$default;
10815
- _.$_$.d = Mutex$default;
10816
- _.$_$.e = Job$default;
10817
- _.$_$.f = launch$default;
10818
- _.$_$.g = Key_getInstance_1;
10819
- _.$_$.h = Dispatchers_getInstance;
10820
- _.$_$.i = FlowCollector;
10821
- _.$_$.j = Flow;
10822
- _.$_$.k = MutableStateFlow_0;
10823
- _.$_$.l = distinctUntilChanged;
10824
- _.$_$.m = take;
10825
- _.$_$.n = transformLatest;
10826
- _.$_$.o = CoroutineExceptionHandler;
10827
- _.$_$.p = CoroutineScope_0;
10828
- _.$_$.q = CoroutineScope;
10829
- _.$_$.r = get_isActive;
10720
+ _.$_$.d = Job$default;
10721
+ _.$_$.e = launch$default;
10722
+ _.$_$.f = Key_getInstance_1;
10723
+ _.$_$.g = Dispatchers_getInstance;
10724
+ _.$_$.h = FlowCollector;
10725
+ _.$_$.i = Flow;
10726
+ _.$_$.j = MutableStateFlow_0;
10727
+ _.$_$.k = distinctUntilChanged;
10728
+ _.$_$.l = take;
10729
+ _.$_$.m = transformLatest;
10730
+ _.$_$.n = CoroutineExceptionHandler;
10731
+ _.$_$.o = CoroutineScope_0;
10732
+ _.$_$.p = CoroutineScope;
10733
+ _.$_$.q = get_isActive;
10830
10734
  //endregion
10831
10735
  return _;
10832
10736
  }));