game_client_logic_deb 1.8.348 → 1.8.349

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.
@@ -109,8 +109,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
109
109
  }
110
110
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
111
111
  initMetadataForInterface(MutableIterable, 'MutableIterable');
112
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
113
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
112
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
113
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
114
114
  initMetadataForCompanion(Companion_1);
115
115
  initMetadataForInterface(Entry, 'Entry');
116
116
  initMetadataForCompanion(Companion_2);
@@ -140,7 +140,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
140
140
  initMetadataForInterface(Comparator, 'Comparator');
141
141
  initMetadataForObject(Unit, 'Unit');
142
142
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
143
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
143
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
144
144
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
145
145
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
146
146
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -153,7 +153,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
153
153
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
154
154
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
155
155
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
156
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
156
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
157
157
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
158
158
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
159
159
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -1120,6 +1120,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
1120
1120
  }
1121
1121
  return result;
1122
1122
  }
1123
+ function toMutableSet(_this__u8e3s4) {
1124
+ var tmp;
1125
+ if (isInterface(_this__u8e3s4, Collection)) {
1126
+ tmp = LinkedHashSet_init_$Create$_0(_this__u8e3s4);
1127
+ } else {
1128
+ tmp = toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$());
1129
+ }
1130
+ return tmp;
1131
+ }
1123
1132
  function toCollection_0(_this__u8e3s4, destination) {
1124
1133
  var _iterator__ex2g4s = _this__u8e3s4.j();
1125
1134
  while (_iterator__ex2g4s.k()) {
@@ -1133,15 +1142,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
1133
1142
  return toMutableList_0(_this__u8e3s4);
1134
1143
  return toCollection_0(_this__u8e3s4, ArrayList_init_$Create$());
1135
1144
  }
1136
- function toMutableSet(_this__u8e3s4) {
1137
- var tmp;
1138
- if (isInterface(_this__u8e3s4, Collection)) {
1139
- tmp = LinkedHashSet_init_$Create$_0(_this__u8e3s4);
1140
- } else {
1141
- tmp = toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$());
1142
- }
1143
- return tmp;
1144
- }
1145
1145
  function last_1(_this__u8e3s4) {
1146
1146
  if (isInterface(_this__u8e3s4, KtList))
1147
1147
  return last_0(_this__u8e3s4);