game_client_logic_deb 1.8.326 → 1.8.328
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/Kotlin-DateTime-library-kotlinx-datetime.js +2 -2
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +19 -15
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +1 -1
- package/kotlinx-coroutines-core.js +7 -7
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -1971,6 +1971,7 @@ export declare interface GameHelper {
|
|
|
1971
1971
|
getRulesByString(name: string): games.jass.logic.data.models.rules.Rules;
|
|
1972
1972
|
mapRulesSetType(name: string): games.jass.logic.data.models.rules.RulesSetType;
|
|
1973
1973
|
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
1974
|
+
getAllLeagues(): Array<string>;
|
|
1974
1975
|
readonly __doNotUseOrImplementIt: {
|
|
1975
1976
|
readonly GameHelper: unique symbol;
|
|
1976
1977
|
};
|
|
@@ -2008,7 +2009,6 @@ export declare interface RatingHelper {
|
|
|
2008
2009
|
isValidRatingForLeague(league: games.jass.logic.data.models.leagues.League, rating: number): boolean;
|
|
2009
2010
|
mapRatingToLeague(rating: number): games.jass.logic.data.models.leagues.League;
|
|
2010
2011
|
getLeaguesConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
|
|
2011
|
-
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
2012
2012
|
readonly __doNotUseOrImplementIt: {
|
|
2013
2013
|
readonly RatingHelper: unique symbol;
|
|
2014
2014
|
};
|
|
@@ -216,11 +216,6 @@
|
|
|
216
216
|
initMetadataForClass(SendBroadcast, 'SendBroadcast', VOID, VOID, [Waiter]);
|
|
217
217
|
initMetadataForClass(BufferedChannelIterator, 'BufferedChannelIterator', VOID, VOID, [Waiter], [0, 3]);
|
|
218
218
|
initMetadataForCoroutine($sendCOROUTINE$3, CoroutineImpl);
|
|
219
|
-
function close$default(cause, $super) {
|
|
220
|
-
cause = cause === VOID ? null : cause;
|
|
221
|
-
return $super === VOID ? this.c16(cause) : $super.c16.call(this, cause);
|
|
222
|
-
}
|
|
223
|
-
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
224
219
|
function cancel$default_0(cause, $super) {
|
|
225
220
|
cause = cause === VOID ? null : cause;
|
|
226
221
|
var tmp;
|
|
@@ -233,7 +228,12 @@
|
|
|
233
228
|
return tmp;
|
|
234
229
|
}
|
|
235
230
|
initMetadataForInterface(ReceiveChannel, 'ReceiveChannel', VOID, VOID, VOID, [0]);
|
|
236
|
-
|
|
231
|
+
function close$default(cause, $super) {
|
|
232
|
+
cause = cause === VOID ? null : cause;
|
|
233
|
+
return $super === VOID ? this.c16(cause) : $super.c16.call(this, cause);
|
|
234
|
+
}
|
|
235
|
+
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
236
|
+
initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 4, 0, 3]);
|
|
237
237
|
initMetadataForClass(WaiterEB, 'WaiterEB');
|
|
238
238
|
initMetadataForClass(ReceiveCatching, 'ReceiveCatching', VOID, VOID, [Waiter]);
|
|
239
239
|
initMetadataForObject(Factory, 'Factory');
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
initMetadataForClass(ChannelResult, 'ChannelResult');
|
|
244
244
|
initMetadataForClass(ClosedSendChannelException, 'ClosedSendChannelException', VOID, IllegalStateException);
|
|
245
245
|
initMetadataForClass(ClosedReceiveChannelException, 'ClosedReceiveChannelException', VOID, NoSuchElementException);
|
|
246
|
-
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine,
|
|
246
|
+
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine, ReceiveChannel, SendChannel], [1, 0]);
|
|
247
247
|
initMetadataForClass(ConflatedBufferedChannel, 'ConflatedBufferedChannel', VOID, BufferedChannel, VOID, [1, 0]);
|
|
248
248
|
initMetadataForInterface(ProducerScope, 'ProducerScope', VOID, VOID, [CoroutineScope, SendChannel], [1]);
|
|
249
249
|
initMetadataForClass(ProducerCoroutine, 'ProducerCoroutine', VOID, ChannelCoroutine, [ChannelCoroutine, ProducerScope], [1, 0]);
|