@acidify/core 0.9.4 → 0.9.5
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/dist/acidify-acidify-core.d.ts +2 -0
- package/dist/acidify-acidify-core.mjs +696 -580
- package/package.json +1 -1
|
@@ -94,13 +94,13 @@ initMetadataForInterface(KtSet, "Set", VOID, VOID, [Collection]);
|
|
|
94
94
|
initMetadataForInterface(MutableIterable, "MutableIterable");
|
|
95
95
|
initMetadataForInterface(KtMutableList, "MutableList", VOID, VOID, [
|
|
96
96
|
KtList,
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
Collection,
|
|
98
|
+
MutableIterable
|
|
99
99
|
]);
|
|
100
100
|
initMetadataForInterface(KtMutableSet, "MutableSet", VOID, VOID, [
|
|
101
101
|
KtSet,
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
Collection,
|
|
103
|
+
MutableIterable
|
|
104
104
|
]);
|
|
105
105
|
initMetadataForCompanion(Companion_2$9);
|
|
106
106
|
initMetadataForClass(Enum, "Enum", VOID, VOID, [Comparable]);
|
|
@@ -124,8 +124,8 @@ initMetadataForObject(Unit, "Unit");
|
|
|
124
124
|
initMetadataForClass(AbstractCollection, "AbstractCollection", VOID, VOID, [Collection]);
|
|
125
125
|
initMetadataForClass(AbstractMutableCollection, "AbstractMutableCollection", VOID, AbstractCollection, [
|
|
126
126
|
AbstractCollection,
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
Collection,
|
|
128
|
+
MutableIterable
|
|
129
129
|
]);
|
|
130
130
|
initMetadataForClass(IteratorImpl$1, "IteratorImpl");
|
|
131
131
|
initMetadataForClass(ListIteratorImpl, "ListIteratorImpl", VOID, IteratorImpl$1);
|
|
@@ -144,8 +144,8 @@ initMetadataForClass(ArrayList, "ArrayList", ArrayList_init_$Create$, AbstractMu
|
|
|
144
144
|
initMetadataForClass(HashMap, "HashMap", HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
145
145
|
initMetadataForClass(HashMapKeys, "HashMapKeys", VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
146
146
|
initMetadataForClass(HashMapValues, "HashMapValues", VOID, AbstractMutableCollection, [
|
|
147
|
-
MutableIterable,
|
|
148
147
|
Collection,
|
|
148
|
+
MutableIterable,
|
|
149
149
|
AbstractMutableCollection
|
|
150
150
|
]);
|
|
151
151
|
initMetadataForClass(HashMapEntrySetBase, "HashMapEntrySetBase", VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
@@ -14489,11 +14489,6 @@ initMetadataForClass(SendBroadcast, "SendBroadcast", VOID, VOID, [Waiter]);
|
|
|
14489
14489
|
initMetadataForClass(BufferedChannelIterator, "BufferedChannelIterator", VOID, VOID, [Waiter], [0, 3]);
|
|
14490
14490
|
initMetadataForCoroutine($sendCOROUTINE$, CoroutineImpl);
|
|
14491
14491
|
initMetadataForCoroutine($receiveCOROUTINE$, CoroutineImpl);
|
|
14492
|
-
function close$default(cause, $super) {
|
|
14493
|
-
cause = cause === VOID ? null : cause;
|
|
14494
|
-
return $super === VOID ? this.h2a(cause) : $super.h2a.call(this, cause);
|
|
14495
|
-
}
|
|
14496
|
-
initMetadataForInterface(SendChannel, "SendChannel", VOID, VOID, VOID, [1]);
|
|
14497
14492
|
function cancel$default_0(cause, $super) {
|
|
14498
14493
|
cause = cause === VOID ? null : cause;
|
|
14499
14494
|
var tmp;
|
|
@@ -14504,7 +14499,12 @@ function cancel$default_0(cause, $super) {
|
|
|
14504
14499
|
return tmp;
|
|
14505
14500
|
}
|
|
14506
14501
|
initMetadataForInterface(ReceiveChannel, "ReceiveChannel", VOID, VOID, VOID, [0]);
|
|
14507
|
-
|
|
14502
|
+
function close$default(cause, $super) {
|
|
14503
|
+
cause = cause === VOID ? null : cause;
|
|
14504
|
+
return $super === VOID ? this.h2a(cause) : $super.h2a.call(this, cause);
|
|
14505
|
+
}
|
|
14506
|
+
initMetadataForInterface(SendChannel, "SendChannel", VOID, VOID, VOID, [1]);
|
|
14507
|
+
initMetadataForClass(BufferedChannel, "BufferedChannel", VOID, VOID, [ReceiveChannel, SendChannel], [
|
|
14508
14508
|
1,
|
|
14509
14509
|
4,
|
|
14510
14510
|
0,
|
|
@@ -14521,8 +14521,8 @@ initMetadataForClass(ClosedReceiveChannelException, "ClosedReceiveChannelExcepti
|
|
|
14521
14521
|
initMetadataForClass(ClosedSendChannelException, "ClosedSendChannelException", VOID, IllegalStateException);
|
|
14522
14522
|
initMetadataForClass(ChannelCoroutine, "ChannelCoroutine", VOID, AbstractCoroutine, [
|
|
14523
14523
|
AbstractCoroutine,
|
|
14524
|
-
|
|
14525
|
-
|
|
14524
|
+
ReceiveChannel,
|
|
14525
|
+
SendChannel
|
|
14526
14526
|
], [1, 0]);
|
|
14527
14527
|
initMetadataForClass(ConflatedBufferedChannel, "ConflatedBufferedChannel", VOID, BufferedChannel, VOID, [1, 0]);
|
|
14528
14528
|
initMetadataForInterface(ProducerScope, "ProducerScope", VOID, VOID, [CoroutineScope, SendChannel], [1]);
|
|
@@ -14557,8 +14557,8 @@ initMetadataForInterface(SelectInstance, "SelectInstance");
|
|
|
14557
14557
|
initMetadataForClass(ClauseData, "ClauseData", VOID, VOID, VOID, [1]);
|
|
14558
14558
|
initMetadataForClass(SelectImplementation, "SelectImplementation", VOID, VOID, [
|
|
14559
14559
|
CancelHandler,
|
|
14560
|
-
|
|
14561
|
-
|
|
14560
|
+
Waiter,
|
|
14561
|
+
SelectInstance
|
|
14562
14562
|
], [0, 2]);
|
|
14563
14563
|
initMetadataForClass(TrySelectDetailedResult, "TrySelectDetailedResult", VOID, Enum);
|
|
14564
14564
|
initMetadataForClass(CancellableContinuationWithOwner, "CancellableContinuationWithOwner", VOID, VOID, [CancellableContinuation, Waiter]);
|
|
@@ -40418,7 +40418,7 @@ initMetadataForCompanion(Companion_3$4);
|
|
|
40418
40418
|
initMetadataForClass(ChannelConfig, "ChannelConfig");
|
|
40419
40419
|
initMetadataForClass(ChannelOverflow, "ChannelOverflow", VOID, Enum);
|
|
40420
40420
|
initMetadataForCompanion(Companion_4$3);
|
|
40421
|
-
initMetadataForClass(BoundedChannel, "BoundedChannel", VOID, VOID, [
|
|
40421
|
+
initMetadataForClass(BoundedChannel, "BoundedChannel", VOID, VOID, [ReceiveChannel, SendChannel], [1, 0]);
|
|
40422
40422
|
initMetadataForClass(ChannelOverflowException, "ChannelOverflowException", VOID, RuntimeException);
|
|
40423
40423
|
initMetadataForInterface(WebSocketExtension, "WebSocketExtension");
|
|
40424
40424
|
initMetadataForClass(WebSocketExtensionsConfig, "WebSocketExtensionsConfig", WebSocketExtensionsConfig);
|
|
@@ -57350,21 +57350,21 @@ initMetadataForClass(CharacterDataImpl, "CharacterDataImpl", VOID, NodeImpl, [No
|
|
|
57350
57350
|
initMetadataForInterface(Text_0$1, "Text", VOID, VOID, [CharacterData]);
|
|
57351
57351
|
initMetadataForClass(TextImpl, "TextImpl", VOID, CharacterDataImpl, [
|
|
57352
57352
|
CharacterDataImpl,
|
|
57353
|
-
|
|
57354
|
-
|
|
57353
|
+
ICharacterData,
|
|
57354
|
+
Text_0$1
|
|
57355
57355
|
]);
|
|
57356
57356
|
initMetadataForInterface(CDATASection_0, "CDATASection", VOID, VOID, [Text_0$1]);
|
|
57357
57357
|
initMetadataForClass(CDATASectionImpl, "CDATASectionImpl", VOID, TextImpl, [
|
|
57358
57358
|
TextImpl,
|
|
57359
|
+
ICharacterData,
|
|
57359
57360
|
Text_0$1,
|
|
57360
|
-
CDATASection_0
|
|
57361
|
-
ICharacterData
|
|
57361
|
+
CDATASection_0
|
|
57362
57362
|
]);
|
|
57363
57363
|
initMetadataForInterface(Comment_0, "Comment", VOID, VOID, [CharacterData]);
|
|
57364
57364
|
initMetadataForClass(CommentImpl, "CommentImpl", VOID, CharacterDataImpl, [
|
|
57365
57365
|
CharacterDataImpl,
|
|
57366
|
-
|
|
57367
|
-
|
|
57366
|
+
Comment_0,
|
|
57367
|
+
ICharacterData
|
|
57368
57368
|
]);
|
|
57369
57369
|
function createDocument(namespace, qualifiedName, documentType) {
|
|
57370
57370
|
var tmp;
|
|
@@ -65804,7 +65804,7 @@ initMetadataForClass(SimpleEntry, "SimpleEntry", VOID, VOID, [MutableEntry]);
|
|
|
65804
65804
|
initMetadataForClass(SimpleIterator, "SimpleIterator");
|
|
65805
65805
|
initMetadataForClass(QNameMap$entries$1, VOID, VOID, VOID, [KtMutableSet]);
|
|
65806
65806
|
initMetadataForClass(QNameMap$keys$1, VOID, VOID, VOID, [KtMutableSet]);
|
|
65807
|
-
initMetadataForClass(QNameMap$values$1, VOID, VOID, VOID, [
|
|
65807
|
+
initMetadataForClass(QNameMap$values$1, VOID, VOID, VOID, [Collection, MutableIterable]);
|
|
65808
65808
|
initMetadataForClass(QNameMap, "QNameMap", QNameMap_init_$Create$, VOID, [KtMutableMap]);
|
|
65809
65809
|
initMetadataForClass(ShadowPolicy, "ShadowPolicy", VOID, VOID, [XmlSerializationPolicy]);
|
|
65810
65810
|
initMetadataForClass(SubDocumentReader, "SubDocumentReader", VOID, VOID, [XmlReader]);
|
|
@@ -80351,8 +80351,10 @@ initMetadataForLambda(JsBot$getCookies$slambda, CoroutineImpl, VOID, [1]);
|
|
|
80351
80351
|
initMetadataForLambda(JsBot$getCsrfToken$slambda, CoroutineImpl, VOID, [1]);
|
|
80352
80352
|
initMetadataForLambda(JsBot$sendFriendMessage$slambda, CoroutineImpl, VOID, [1]);
|
|
80353
80353
|
initMetadataForLambda(JsBot$sendFriendMessageRich$slambda, CoroutineImpl, VOID, [1]);
|
|
80354
|
+
initMetadataForLambda(JsBot$sendFriendMessageBySegments$slambda, CoroutineImpl, VOID, [1]);
|
|
80354
80355
|
initMetadataForLambda(JsBot$sendGroupMessage$slambda, CoroutineImpl, VOID, [1]);
|
|
80355
80356
|
initMetadataForLambda(JsBot$sendGroupMessageRich$slambda, CoroutineImpl, VOID, [1]);
|
|
80357
|
+
initMetadataForLambda(JsBot$sendGroupMessageBySegments$slambda, CoroutineImpl, VOID, [1]);
|
|
80356
80358
|
initMetadataForLambda(JsBot$recallFriendMessage$slambda, CoroutineImpl, VOID, [1]);
|
|
80357
80359
|
initMetadataForLambda(JsBot$recallGroupMessage$slambda, CoroutineImpl, VOID, [1]);
|
|
80358
80360
|
initMetadataForLambda(JsBot$getFriendHistoryMessages$slambda, CoroutineImpl, VOID, [1]);
|
|
@@ -153750,10 +153752,64 @@ function JsBot$sendFriendMessageRich$slambda_0(this$0, $friendUin, $clientSequen
|
|
|
153750
153752
|
l.$arity = 1;
|
|
153751
153753
|
return l;
|
|
153752
153754
|
}
|
|
153753
|
-
function JsBot$
|
|
153755
|
+
function JsBot$sendFriendMessageBySegments$slambda(this$0, $friendUin, $clientSequence, $random, $segments, resultContinuation) {
|
|
153754
153756
|
this.eex_1 = this$0;
|
|
153755
|
-
this.fex_1 = $
|
|
153756
|
-
this.gex_1 = $
|
|
153757
|
+
this.fex_1 = $friendUin;
|
|
153758
|
+
this.gex_1 = $clientSequence;
|
|
153759
|
+
this.hex_1 = $random;
|
|
153760
|
+
this.iex_1 = $segments;
|
|
153761
|
+
CoroutineImpl.call(this, resultContinuation);
|
|
153762
|
+
}
|
|
153763
|
+
protoOf(JsBot$sendFriendMessageBySegments$slambda).hew = function($this$promise, $completion) {
|
|
153764
|
+
var tmp = this.q2u($this$promise, $completion);
|
|
153765
|
+
tmp.h9_1 = Unit_instance;
|
|
153766
|
+
tmp.i9_1 = null;
|
|
153767
|
+
return tmp.n9();
|
|
153768
|
+
};
|
|
153769
|
+
protoOf(JsBot$sendFriendMessageBySegments$slambda).aa = function(p1, $completion) {
|
|
153770
|
+
return this.hew((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
153771
|
+
};
|
|
153772
|
+
protoOf(JsBot$sendFriendMessageBySegments$slambda).n9 = function() {
|
|
153773
|
+
var suspendResult = this.h9_1;
|
|
153774
|
+
$sm: do
|
|
153775
|
+
try {
|
|
153776
|
+
switch (this.f9_1) {
|
|
153777
|
+
case 0:
|
|
153778
|
+
this.g9_1 = 2;
|
|
153779
|
+
this.f9_1 = 1;
|
|
153780
|
+
suspendResult = sendFriendMessage(this.eex_1.teh_1, this.fex_1, this.gex_1, this.hex_1, toList(this.iex_1), this);
|
|
153781
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
153782
|
+
continue $sm;
|
|
153783
|
+
case 1: return suspendResult;
|
|
153784
|
+
case 2: throw this.i9_1;
|
|
153785
|
+
}
|
|
153786
|
+
} catch ($p) {
|
|
153787
|
+
var e = $p;
|
|
153788
|
+
if (this.g9_1 === 2) throw e;
|
|
153789
|
+
else {
|
|
153790
|
+
this.f9_1 = this.g9_1;
|
|
153791
|
+
this.i9_1 = e;
|
|
153792
|
+
}
|
|
153793
|
+
}
|
|
153794
|
+
while (true);
|
|
153795
|
+
};
|
|
153796
|
+
protoOf(JsBot$sendFriendMessageBySegments$slambda).q2u = function($this$promise, completion) {
|
|
153797
|
+
var i$1 = new JsBot$sendFriendMessageBySegments$slambda(this.eex_1, this.fex_1, this.gex_1, this.hex_1, this.iex_1, completion);
|
|
153798
|
+
i$1.jex_1 = $this$promise;
|
|
153799
|
+
return i$1;
|
|
153800
|
+
};
|
|
153801
|
+
function JsBot$sendFriendMessageBySegments$slambda_0(this$0, $friendUin, $clientSequence, $random, $segments, resultContinuation) {
|
|
153802
|
+
var i$1 = new JsBot$sendFriendMessageBySegments$slambda(this$0, $friendUin, $clientSequence, $random, $segments, resultContinuation);
|
|
153803
|
+
var l = function($this$promise, $completion) {
|
|
153804
|
+
return i$1.hew($this$promise, $completion);
|
|
153805
|
+
};
|
|
153806
|
+
l.$arity = 1;
|
|
153807
|
+
return l;
|
|
153808
|
+
}
|
|
153809
|
+
function JsBot$sendGroupMessage$slambda(this$0, $groupUin, $build, resultContinuation) {
|
|
153810
|
+
this.sex_1 = this$0;
|
|
153811
|
+
this.tex_1 = $groupUin;
|
|
153812
|
+
this.uex_1 = $build;
|
|
153757
153813
|
CoroutineImpl.call(this, resultContinuation);
|
|
153758
153814
|
}
|
|
153759
153815
|
protoOf(JsBot$sendGroupMessage$slambda).hew = function($this$promise, $completion) {
|
|
@@ -153772,14 +153828,14 @@ protoOf(JsBot$sendGroupMessage$slambda).n9 = function() {
|
|
|
153772
153828
|
switch (this.f9_1) {
|
|
153773
153829
|
case 0:
|
|
153774
153830
|
this.g9_1 = 2;
|
|
153775
|
-
var tmp0 = this.
|
|
153776
|
-
var groupUin = this.
|
|
153831
|
+
var tmp0 = this.sex_1.teh_1;
|
|
153832
|
+
var groupUin = this.tex_1;
|
|
153777
153833
|
var clientSequence = Default_getInstance_0().vj();
|
|
153778
153834
|
var random$1 = Default_getInstance_0().qg();
|
|
153779
153835
|
this.f9_1 = 1;
|
|
153780
153836
|
var this_0 = new BotOutgoingMessageBuilder();
|
|
153781
153837
|
var b = new BotOutgoingMessageBuilder_0(this_0);
|
|
153782
|
-
this.
|
|
153838
|
+
this.uex_1(b);
|
|
153783
153839
|
suspendResult = sendGroupMessage(tmp0, groupUin, clientSequence, random$1, this_0.ed7_1, this);
|
|
153784
153840
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
153785
153841
|
continue $sm;
|
|
@@ -153797,8 +153853,8 @@ protoOf(JsBot$sendGroupMessage$slambda).n9 = function() {
|
|
|
153797
153853
|
while (true);
|
|
153798
153854
|
};
|
|
153799
153855
|
protoOf(JsBot$sendGroupMessage$slambda).q2u = function($this$promise, completion) {
|
|
153800
|
-
var i$1 = new JsBot$sendGroupMessage$slambda(this.
|
|
153801
|
-
i$1.
|
|
153856
|
+
var i$1 = new JsBot$sendGroupMessage$slambda(this.sex_1, this.tex_1, this.uex_1, completion);
|
|
153857
|
+
i$1.vex_1 = $this$promise;
|
|
153802
153858
|
return i$1;
|
|
153803
153859
|
};
|
|
153804
153860
|
function JsBot$sendGroupMessage$slambda_0(this$0, $groupUin, $build, resultContinuation) {
|
|
@@ -153810,11 +153866,11 @@ function JsBot$sendGroupMessage$slambda_0(this$0, $groupUin, $build, resultConti
|
|
|
153810
153866
|
return l;
|
|
153811
153867
|
}
|
|
153812
153868
|
function JsBot$sendGroupMessageRich$slambda(this$0, $groupUin, $clientSequence, $random, $build, resultContinuation) {
|
|
153813
|
-
this.
|
|
153814
|
-
this.
|
|
153815
|
-
this.
|
|
153816
|
-
this.
|
|
153817
|
-
this.
|
|
153869
|
+
this.eey_1 = this$0;
|
|
153870
|
+
this.fey_1 = $groupUin;
|
|
153871
|
+
this.gey_1 = $clientSequence;
|
|
153872
|
+
this.hey_1 = $random;
|
|
153873
|
+
this.iey_1 = $build;
|
|
153818
153874
|
CoroutineImpl.call(this, resultContinuation);
|
|
153819
153875
|
}
|
|
153820
153876
|
protoOf(JsBot$sendGroupMessageRich$slambda).hew = function($this$promise, $completion) {
|
|
@@ -153833,14 +153889,14 @@ protoOf(JsBot$sendGroupMessageRich$slambda).n9 = function() {
|
|
|
153833
153889
|
switch (this.f9_1) {
|
|
153834
153890
|
case 0:
|
|
153835
153891
|
this.g9_1 = 2;
|
|
153836
|
-
var tmp0 = this.
|
|
153837
|
-
var tmp2 = this.
|
|
153838
|
-
var tmp4 = this.
|
|
153839
|
-
var random$1 = this.
|
|
153892
|
+
var tmp0 = this.eey_1.teh_1;
|
|
153893
|
+
var tmp2 = this.fey_1;
|
|
153894
|
+
var tmp4 = this.gey_1;
|
|
153895
|
+
var random$1 = this.hey_1;
|
|
153840
153896
|
this.f9_1 = 1;
|
|
153841
153897
|
var this_0 = new BotOutgoingMessageBuilder();
|
|
153842
153898
|
var b = new BotOutgoingMessageBuilder_0(this_0);
|
|
153843
|
-
this.
|
|
153899
|
+
this.iey_1(b);
|
|
153844
153900
|
suspendResult = sendGroupMessage(tmp0, tmp2, tmp4, random$1, this_0.ed7_1, this);
|
|
153845
153901
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
153846
153902
|
continue $sm;
|
|
@@ -153858,8 +153914,8 @@ protoOf(JsBot$sendGroupMessageRich$slambda).n9 = function() {
|
|
|
153858
153914
|
while (true);
|
|
153859
153915
|
};
|
|
153860
153916
|
protoOf(JsBot$sendGroupMessageRich$slambda).q2u = function($this$promise, completion) {
|
|
153861
|
-
var i$1 = new JsBot$sendGroupMessageRich$slambda(this.
|
|
153862
|
-
i$1.
|
|
153917
|
+
var i$1 = new JsBot$sendGroupMessageRich$slambda(this.eey_1, this.fey_1, this.gey_1, this.hey_1, this.iey_1, completion);
|
|
153918
|
+
i$1.jey_1 = $this$promise;
|
|
153863
153919
|
return i$1;
|
|
153864
153920
|
};
|
|
153865
153921
|
function JsBot$sendGroupMessageRich$slambda_0(this$0, $groupUin, $clientSequence, $random, $build, resultContinuation) {
|
|
@@ -153870,10 +153926,64 @@ function JsBot$sendGroupMessageRich$slambda_0(this$0, $groupUin, $clientSequence
|
|
|
153870
153926
|
l.$arity = 1;
|
|
153871
153927
|
return l;
|
|
153872
153928
|
}
|
|
153929
|
+
function JsBot$sendGroupMessageBySegments$slambda(this$0, $groupUin, $clientSequence, $random, $segments, resultContinuation) {
|
|
153930
|
+
this.tey_1 = this$0;
|
|
153931
|
+
this.uey_1 = $groupUin;
|
|
153932
|
+
this.vey_1 = $clientSequence;
|
|
153933
|
+
this.wey_1 = $random;
|
|
153934
|
+
this.xey_1 = $segments;
|
|
153935
|
+
CoroutineImpl.call(this, resultContinuation);
|
|
153936
|
+
}
|
|
153937
|
+
protoOf(JsBot$sendGroupMessageBySegments$slambda).hew = function($this$promise, $completion) {
|
|
153938
|
+
var tmp = this.q2u($this$promise, $completion);
|
|
153939
|
+
tmp.h9_1 = Unit_instance;
|
|
153940
|
+
tmp.i9_1 = null;
|
|
153941
|
+
return tmp.n9();
|
|
153942
|
+
};
|
|
153943
|
+
protoOf(JsBot$sendGroupMessageBySegments$slambda).aa = function(p1, $completion) {
|
|
153944
|
+
return this.hew((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
153945
|
+
};
|
|
153946
|
+
protoOf(JsBot$sendGroupMessageBySegments$slambda).n9 = function() {
|
|
153947
|
+
var suspendResult = this.h9_1;
|
|
153948
|
+
$sm: do
|
|
153949
|
+
try {
|
|
153950
|
+
switch (this.f9_1) {
|
|
153951
|
+
case 0:
|
|
153952
|
+
this.g9_1 = 2;
|
|
153953
|
+
this.f9_1 = 1;
|
|
153954
|
+
suspendResult = sendGroupMessage(this.tey_1.teh_1, this.uey_1, this.vey_1, this.wey_1, toList(this.xey_1), this);
|
|
153955
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
153956
|
+
continue $sm;
|
|
153957
|
+
case 1: return suspendResult;
|
|
153958
|
+
case 2: throw this.i9_1;
|
|
153959
|
+
}
|
|
153960
|
+
} catch ($p) {
|
|
153961
|
+
var e = $p;
|
|
153962
|
+
if (this.g9_1 === 2) throw e;
|
|
153963
|
+
else {
|
|
153964
|
+
this.f9_1 = this.g9_1;
|
|
153965
|
+
this.i9_1 = e;
|
|
153966
|
+
}
|
|
153967
|
+
}
|
|
153968
|
+
while (true);
|
|
153969
|
+
};
|
|
153970
|
+
protoOf(JsBot$sendGroupMessageBySegments$slambda).q2u = function($this$promise, completion) {
|
|
153971
|
+
var i$1 = new JsBot$sendGroupMessageBySegments$slambda(this.tey_1, this.uey_1, this.vey_1, this.wey_1, this.xey_1, completion);
|
|
153972
|
+
i$1.yey_1 = $this$promise;
|
|
153973
|
+
return i$1;
|
|
153974
|
+
};
|
|
153975
|
+
function JsBot$sendGroupMessageBySegments$slambda_0(this$0, $groupUin, $clientSequence, $random, $segments, resultContinuation) {
|
|
153976
|
+
var i$1 = new JsBot$sendGroupMessageBySegments$slambda(this$0, $groupUin, $clientSequence, $random, $segments, resultContinuation);
|
|
153977
|
+
var l = function($this$promise, $completion) {
|
|
153978
|
+
return i$1.hew($this$promise, $completion);
|
|
153979
|
+
};
|
|
153980
|
+
l.$arity = 1;
|
|
153981
|
+
return l;
|
|
153982
|
+
}
|
|
153873
153983
|
function JsBot$recallFriendMessage$slambda(this$0, $friendUin, $sequence, resultContinuation) {
|
|
153874
|
-
this.
|
|
153875
|
-
this.
|
|
153876
|
-
this.
|
|
153984
|
+
this.hez_1 = this$0;
|
|
153985
|
+
this.iez_1 = $friendUin;
|
|
153986
|
+
this.jez_1 = $sequence;
|
|
153877
153987
|
CoroutineImpl.call(this, resultContinuation);
|
|
153878
153988
|
}
|
|
153879
153989
|
protoOf(JsBot$recallFriendMessage$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -153893,7 +154003,7 @@ protoOf(JsBot$recallFriendMessage$slambda).n9 = function() {
|
|
|
153893
154003
|
case 0:
|
|
153894
154004
|
this.g9_1 = 2;
|
|
153895
154005
|
this.f9_1 = 1;
|
|
153896
|
-
suspendResult = recallFriendMessage(this.
|
|
154006
|
+
suspendResult = recallFriendMessage(this.hez_1.teh_1, this.iez_1, this.jez_1, this);
|
|
153897
154007
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
153898
154008
|
continue $sm;
|
|
153899
154009
|
case 1: return Unit_instance;
|
|
@@ -153910,8 +154020,8 @@ protoOf(JsBot$recallFriendMessage$slambda).n9 = function() {
|
|
|
153910
154020
|
while (true);
|
|
153911
154021
|
};
|
|
153912
154022
|
protoOf(JsBot$recallFriendMessage$slambda).q2u = function($this$promise, completion) {
|
|
153913
|
-
var i$1 = new JsBot$recallFriendMessage$slambda(this.
|
|
153914
|
-
i$1.
|
|
154023
|
+
var i$1 = new JsBot$recallFriendMessage$slambda(this.hez_1, this.iez_1, this.jez_1, completion);
|
|
154024
|
+
i$1.kez_1 = $this$promise;
|
|
153915
154025
|
return i$1;
|
|
153916
154026
|
};
|
|
153917
154027
|
function JsBot$recallFriendMessage$slambda_0(this$0, $friendUin, $sequence, resultContinuation) {
|
|
@@ -153923,9 +154033,9 @@ function JsBot$recallFriendMessage$slambda_0(this$0, $friendUin, $sequence, resu
|
|
|
153923
154033
|
return l;
|
|
153924
154034
|
}
|
|
153925
154035
|
function JsBot$recallGroupMessage$slambda(this$0, $groupUin, $sequence, resultContinuation) {
|
|
153926
|
-
this.
|
|
153927
|
-
this.
|
|
153928
|
-
this.
|
|
154036
|
+
this.tez_1 = this$0;
|
|
154037
|
+
this.uez_1 = $groupUin;
|
|
154038
|
+
this.vez_1 = $sequence;
|
|
153929
154039
|
CoroutineImpl.call(this, resultContinuation);
|
|
153930
154040
|
}
|
|
153931
154041
|
protoOf(JsBot$recallGroupMessage$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -153945,7 +154055,7 @@ protoOf(JsBot$recallGroupMessage$slambda).n9 = function() {
|
|
|
153945
154055
|
case 0:
|
|
153946
154056
|
this.g9_1 = 2;
|
|
153947
154057
|
this.f9_1 = 1;
|
|
153948
|
-
suspendResult = recallGroupMessage(this.
|
|
154058
|
+
suspendResult = recallGroupMessage(this.tez_1.teh_1, this.uez_1, this.vez_1, this);
|
|
153949
154059
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
153950
154060
|
continue $sm;
|
|
153951
154061
|
case 1: return Unit_instance;
|
|
@@ -153962,8 +154072,8 @@ protoOf(JsBot$recallGroupMessage$slambda).n9 = function() {
|
|
|
153962
154072
|
while (true);
|
|
153963
154073
|
};
|
|
153964
154074
|
protoOf(JsBot$recallGroupMessage$slambda).q2u = function($this$promise, completion) {
|
|
153965
|
-
var i$1 = new JsBot$recallGroupMessage$slambda(this.
|
|
153966
|
-
i$1.
|
|
154075
|
+
var i$1 = new JsBot$recallGroupMessage$slambda(this.tez_1, this.uez_1, this.vez_1, completion);
|
|
154076
|
+
i$1.wez_1 = $this$promise;
|
|
153967
154077
|
return i$1;
|
|
153968
154078
|
};
|
|
153969
154079
|
function JsBot$recallGroupMessage$slambda_0(this$0, $groupUin, $sequence, resultContinuation) {
|
|
@@ -153975,20 +154085,20 @@ function JsBot$recallGroupMessage$slambda_0(this$0, $groupUin, $sequence, result
|
|
|
153975
154085
|
return l;
|
|
153976
154086
|
}
|
|
153977
154087
|
function JsBot$getFriendHistoryMessages$slambda(this$0, $friendUin, $limit, $startSequence, resultContinuation) {
|
|
153978
|
-
this.
|
|
153979
|
-
this.
|
|
153980
|
-
this.
|
|
153981
|
-
this.
|
|
154088
|
+
this.ff0_1 = this$0;
|
|
154089
|
+
this.gf0_1 = $friendUin;
|
|
154090
|
+
this.hf0_1 = $limit;
|
|
154091
|
+
this.if0_1 = $startSequence;
|
|
153982
154092
|
CoroutineImpl.call(this, resultContinuation);
|
|
153983
154093
|
}
|
|
153984
|
-
protoOf(JsBot$getFriendHistoryMessages$slambda).
|
|
154094
|
+
protoOf(JsBot$getFriendHistoryMessages$slambda).kf0 = function($this$promise, $completion) {
|
|
153985
154095
|
var tmp = this.q2u($this$promise, $completion);
|
|
153986
154096
|
tmp.h9_1 = Unit_instance;
|
|
153987
154097
|
tmp.i9_1 = null;
|
|
153988
154098
|
return tmp.n9();
|
|
153989
154099
|
};
|
|
153990
154100
|
protoOf(JsBot$getFriendHistoryMessages$slambda).aa = function(p1, $completion) {
|
|
153991
|
-
return this.
|
|
154101
|
+
return this.kf0((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
153992
154102
|
};
|
|
153993
154103
|
protoOf(JsBot$getFriendHistoryMessages$slambda).n9 = function() {
|
|
153994
154104
|
var suspendResult = this.h9_1;
|
|
@@ -153998,7 +154108,7 @@ protoOf(JsBot$getFriendHistoryMessages$slambda).n9 = function() {
|
|
|
153998
154108
|
case 0:
|
|
153999
154109
|
this.g9_1 = 2;
|
|
154000
154110
|
this.f9_1 = 1;
|
|
154001
|
-
suspendResult = getFriendHistoryMessages(this.
|
|
154111
|
+
suspendResult = getFriendHistoryMessages(this.ff0_1.teh_1, this.gf0_1, this.hf0_1, this.if0_1, this);
|
|
154002
154112
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154003
154113
|
continue $sm;
|
|
154004
154114
|
case 1: return suspendResult;
|
|
@@ -154015,33 +154125,33 @@ protoOf(JsBot$getFriendHistoryMessages$slambda).n9 = function() {
|
|
|
154015
154125
|
while (true);
|
|
154016
154126
|
};
|
|
154017
154127
|
protoOf(JsBot$getFriendHistoryMessages$slambda).q2u = function($this$promise, completion) {
|
|
154018
|
-
var i$1 = new JsBot$getFriendHistoryMessages$slambda(this.
|
|
154019
|
-
i$1.
|
|
154128
|
+
var i$1 = new JsBot$getFriendHistoryMessages$slambda(this.ff0_1, this.gf0_1, this.hf0_1, this.if0_1, completion);
|
|
154129
|
+
i$1.jf0_1 = $this$promise;
|
|
154020
154130
|
return i$1;
|
|
154021
154131
|
};
|
|
154022
154132
|
function JsBot$getFriendHistoryMessages$slambda_0(this$0, $friendUin, $limit, $startSequence, resultContinuation) {
|
|
154023
154133
|
var i$1 = new JsBot$getFriendHistoryMessages$slambda(this$0, $friendUin, $limit, $startSequence, resultContinuation);
|
|
154024
154134
|
var l = function($this$promise, $completion) {
|
|
154025
|
-
return i$1.
|
|
154135
|
+
return i$1.kf0($this$promise, $completion);
|
|
154026
154136
|
};
|
|
154027
154137
|
l.$arity = 1;
|
|
154028
154138
|
return l;
|
|
154029
154139
|
}
|
|
154030
154140
|
function JsBot$getGroupHistoryMessages$slambda(this$0, $groupUin, $limit, $startSequence, resultContinuation) {
|
|
154031
|
-
this.
|
|
154032
|
-
this.
|
|
154033
|
-
this.
|
|
154034
|
-
this.
|
|
154141
|
+
this.tf0_1 = this$0;
|
|
154142
|
+
this.uf0_1 = $groupUin;
|
|
154143
|
+
this.vf0_1 = $limit;
|
|
154144
|
+
this.wf0_1 = $startSequence;
|
|
154035
154145
|
CoroutineImpl.call(this, resultContinuation);
|
|
154036
154146
|
}
|
|
154037
|
-
protoOf(JsBot$getGroupHistoryMessages$slambda).
|
|
154147
|
+
protoOf(JsBot$getGroupHistoryMessages$slambda).kf0 = function($this$promise, $completion) {
|
|
154038
154148
|
var tmp = this.q2u($this$promise, $completion);
|
|
154039
154149
|
tmp.h9_1 = Unit_instance;
|
|
154040
154150
|
tmp.i9_1 = null;
|
|
154041
154151
|
return tmp.n9();
|
|
154042
154152
|
};
|
|
154043
154153
|
protoOf(JsBot$getGroupHistoryMessages$slambda).aa = function(p1, $completion) {
|
|
154044
|
-
return this.
|
|
154154
|
+
return this.kf0((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
154045
154155
|
};
|
|
154046
154156
|
protoOf(JsBot$getGroupHistoryMessages$slambda).n9 = function() {
|
|
154047
154157
|
var suspendResult = this.h9_1;
|
|
@@ -154051,7 +154161,7 @@ protoOf(JsBot$getGroupHistoryMessages$slambda).n9 = function() {
|
|
|
154051
154161
|
case 0:
|
|
154052
154162
|
this.g9_1 = 2;
|
|
154053
154163
|
this.f9_1 = 1;
|
|
154054
|
-
suspendResult = getGroupHistoryMessages(this.
|
|
154164
|
+
suspendResult = getGroupHistoryMessages(this.tf0_1.teh_1, this.uf0_1, this.vf0_1, this.wf0_1, this);
|
|
154055
154165
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154056
154166
|
continue $sm;
|
|
154057
154167
|
case 1: return suspendResult;
|
|
@@ -154068,21 +154178,21 @@ protoOf(JsBot$getGroupHistoryMessages$slambda).n9 = function() {
|
|
|
154068
154178
|
while (true);
|
|
154069
154179
|
};
|
|
154070
154180
|
protoOf(JsBot$getGroupHistoryMessages$slambda).q2u = function($this$promise, completion) {
|
|
154071
|
-
var i$1 = new JsBot$getGroupHistoryMessages$slambda(this.
|
|
154072
|
-
i$1.
|
|
154181
|
+
var i$1 = new JsBot$getGroupHistoryMessages$slambda(this.tf0_1, this.uf0_1, this.vf0_1, this.wf0_1, completion);
|
|
154182
|
+
i$1.xf0_1 = $this$promise;
|
|
154073
154183
|
return i$1;
|
|
154074
154184
|
};
|
|
154075
154185
|
function JsBot$getGroupHistoryMessages$slambda_0(this$0, $groupUin, $limit, $startSequence, resultContinuation) {
|
|
154076
154186
|
var i$1 = new JsBot$getGroupHistoryMessages$slambda(this$0, $groupUin, $limit, $startSequence, resultContinuation);
|
|
154077
154187
|
var l = function($this$promise, $completion) {
|
|
154078
|
-
return i$1.
|
|
154188
|
+
return i$1.kf0($this$promise, $completion);
|
|
154079
154189
|
};
|
|
154080
154190
|
l.$arity = 1;
|
|
154081
154191
|
return l;
|
|
154082
154192
|
}
|
|
154083
154193
|
function JsBot$getDownloadUrl$slambda(this$0, $resourceId, resultContinuation) {
|
|
154084
|
-
this.
|
|
154085
|
-
this.
|
|
154194
|
+
this.gf1_1 = this$0;
|
|
154195
|
+
this.hf1_1 = $resourceId;
|
|
154086
154196
|
CoroutineImpl.call(this, resultContinuation);
|
|
154087
154197
|
}
|
|
154088
154198
|
protoOf(JsBot$getDownloadUrl$slambda).ber = function($this$promise, $completion) {
|
|
@@ -154102,7 +154212,7 @@ protoOf(JsBot$getDownloadUrl$slambda).n9 = function() {
|
|
|
154102
154212
|
case 0:
|
|
154103
154213
|
this.g9_1 = 2;
|
|
154104
154214
|
this.f9_1 = 1;
|
|
154105
|
-
suspendResult = getDownloadUrl(this.
|
|
154215
|
+
suspendResult = getDownloadUrl(this.gf1_1.teh_1, this.hf1_1, this);
|
|
154106
154216
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154107
154217
|
continue $sm;
|
|
154108
154218
|
case 1: return suspendResult;
|
|
@@ -154119,8 +154229,8 @@ protoOf(JsBot$getDownloadUrl$slambda).n9 = function() {
|
|
|
154119
154229
|
while (true);
|
|
154120
154230
|
};
|
|
154121
154231
|
protoOf(JsBot$getDownloadUrl$slambda).q2u = function($this$promise, completion) {
|
|
154122
|
-
var i$1 = new JsBot$getDownloadUrl$slambda(this.
|
|
154123
|
-
i$1.
|
|
154232
|
+
var i$1 = new JsBot$getDownloadUrl$slambda(this.gf1_1, this.hf1_1, completion);
|
|
154233
|
+
i$1.if1_1 = $this$promise;
|
|
154124
154234
|
return i$1;
|
|
154125
154235
|
};
|
|
154126
154236
|
function JsBot$getDownloadUrl$slambda_0(this$0, $resourceId, resultContinuation) {
|
|
@@ -154132,18 +154242,18 @@ function JsBot$getDownloadUrl$slambda_0(this$0, $resourceId, resultContinuation)
|
|
|
154132
154242
|
return l;
|
|
154133
154243
|
}
|
|
154134
154244
|
function JsBot$getForwardedMessages$slambda(this$0, $resId, resultContinuation) {
|
|
154135
|
-
this.
|
|
154136
|
-
this.
|
|
154245
|
+
this.rf1_1 = this$0;
|
|
154246
|
+
this.sf1_1 = $resId;
|
|
154137
154247
|
CoroutineImpl.call(this, resultContinuation);
|
|
154138
154248
|
}
|
|
154139
|
-
protoOf(JsBot$getForwardedMessages$slambda).
|
|
154249
|
+
protoOf(JsBot$getForwardedMessages$slambda).uf1 = function($this$promise, $completion) {
|
|
154140
154250
|
var tmp = this.q2u($this$promise, $completion);
|
|
154141
154251
|
tmp.h9_1 = Unit_instance;
|
|
154142
154252
|
tmp.i9_1 = null;
|
|
154143
154253
|
return tmp.n9();
|
|
154144
154254
|
};
|
|
154145
154255
|
protoOf(JsBot$getForwardedMessages$slambda).aa = function(p1, $completion) {
|
|
154146
|
-
return this.
|
|
154256
|
+
return this.uf1((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
154147
154257
|
};
|
|
154148
154258
|
protoOf(JsBot$getForwardedMessages$slambda).n9 = function() {
|
|
154149
154259
|
var suspendResult = this.h9_1;
|
|
@@ -154153,7 +154263,7 @@ protoOf(JsBot$getForwardedMessages$slambda).n9 = function() {
|
|
|
154153
154263
|
case 0:
|
|
154154
154264
|
this.g9_1 = 2;
|
|
154155
154265
|
this.f9_1 = 1;
|
|
154156
|
-
suspendResult = getForwardedMessages(this.
|
|
154266
|
+
suspendResult = getForwardedMessages(this.rf1_1.teh_1, this.sf1_1, this);
|
|
154157
154267
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154158
154268
|
continue $sm;
|
|
154159
154269
|
case 1: return copyToArray(suspendResult);
|
|
@@ -154170,23 +154280,23 @@ protoOf(JsBot$getForwardedMessages$slambda).n9 = function() {
|
|
|
154170
154280
|
while (true);
|
|
154171
154281
|
};
|
|
154172
154282
|
protoOf(JsBot$getForwardedMessages$slambda).q2u = function($this$promise, completion) {
|
|
154173
|
-
var i$1 = new JsBot$getForwardedMessages$slambda(this.
|
|
154174
|
-
i$1.
|
|
154283
|
+
var i$1 = new JsBot$getForwardedMessages$slambda(this.rf1_1, this.sf1_1, completion);
|
|
154284
|
+
i$1.tf1_1 = $this$promise;
|
|
154175
154285
|
return i$1;
|
|
154176
154286
|
};
|
|
154177
154287
|
function JsBot$getForwardedMessages$slambda_0(this$0, $resId, resultContinuation) {
|
|
154178
154288
|
var i$1 = new JsBot$getForwardedMessages$slambda(this$0, $resId, resultContinuation);
|
|
154179
154289
|
var l = function($this$promise, $completion) {
|
|
154180
|
-
return i$1.
|
|
154290
|
+
return i$1.uf1($this$promise, $completion);
|
|
154181
154291
|
};
|
|
154182
154292
|
l.$arity = 1;
|
|
154183
154293
|
return l;
|
|
154184
154294
|
}
|
|
154185
154295
|
function JsBot$markFriendMessagesAsRead$slambda(this$0, $friendUin, $startSequence, $startTime, resultContinuation) {
|
|
154186
|
-
this.
|
|
154187
|
-
this.
|
|
154188
|
-
this.
|
|
154189
|
-
this.
|
|
154296
|
+
this.df2_1 = this$0;
|
|
154297
|
+
this.ef2_1 = $friendUin;
|
|
154298
|
+
this.ff2_1 = $startSequence;
|
|
154299
|
+
this.gf2_1 = $startTime;
|
|
154190
154300
|
CoroutineImpl.call(this, resultContinuation);
|
|
154191
154301
|
}
|
|
154192
154302
|
protoOf(JsBot$markFriendMessagesAsRead$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154206,7 +154316,7 @@ protoOf(JsBot$markFriendMessagesAsRead$slambda).n9 = function() {
|
|
|
154206
154316
|
case 0:
|
|
154207
154317
|
this.g9_1 = 2;
|
|
154208
154318
|
this.f9_1 = 1;
|
|
154209
|
-
suspendResult = markFriendMessagesAsRead(this.
|
|
154319
|
+
suspendResult = markFriendMessagesAsRead(this.df2_1.teh_1, this.ef2_1, this.ff2_1, this.gf2_1, this);
|
|
154210
154320
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154211
154321
|
continue $sm;
|
|
154212
154322
|
case 1: return Unit_instance;
|
|
@@ -154223,8 +154333,8 @@ protoOf(JsBot$markFriendMessagesAsRead$slambda).n9 = function() {
|
|
|
154223
154333
|
while (true);
|
|
154224
154334
|
};
|
|
154225
154335
|
protoOf(JsBot$markFriendMessagesAsRead$slambda).q2u = function($this$promise, completion) {
|
|
154226
|
-
var i$1 = new JsBot$markFriendMessagesAsRead$slambda(this.
|
|
154227
|
-
i$1.
|
|
154336
|
+
var i$1 = new JsBot$markFriendMessagesAsRead$slambda(this.df2_1, this.ef2_1, this.ff2_1, this.gf2_1, completion);
|
|
154337
|
+
i$1.hf2_1 = $this$promise;
|
|
154228
154338
|
return i$1;
|
|
154229
154339
|
};
|
|
154230
154340
|
function JsBot$markFriendMessagesAsRead$slambda_0(this$0, $friendUin, $startSequence, $startTime, resultContinuation) {
|
|
@@ -154236,9 +154346,9 @@ function JsBot$markFriendMessagesAsRead$slambda_0(this$0, $friendUin, $startSequ
|
|
|
154236
154346
|
return l;
|
|
154237
154347
|
}
|
|
154238
154348
|
function JsBot$markGroupMessagesAsRead$slambda(this$0, $groupUin, $startSequence, resultContinuation) {
|
|
154239
|
-
this.
|
|
154240
|
-
this.
|
|
154241
|
-
this.
|
|
154349
|
+
this.qf2_1 = this$0;
|
|
154350
|
+
this.rf2_1 = $groupUin;
|
|
154351
|
+
this.sf2_1 = $startSequence;
|
|
154242
154352
|
CoroutineImpl.call(this, resultContinuation);
|
|
154243
154353
|
}
|
|
154244
154354
|
protoOf(JsBot$markGroupMessagesAsRead$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154258,7 +154368,7 @@ protoOf(JsBot$markGroupMessagesAsRead$slambda).n9 = function() {
|
|
|
154258
154368
|
case 0:
|
|
154259
154369
|
this.g9_1 = 2;
|
|
154260
154370
|
this.f9_1 = 1;
|
|
154261
|
-
suspendResult = markGroupMessagesAsRead(this.
|
|
154371
|
+
suspendResult = markGroupMessagesAsRead(this.qf2_1.teh_1, this.rf2_1, this.sf2_1, this);
|
|
154262
154372
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154263
154373
|
continue $sm;
|
|
154264
154374
|
case 1: return Unit_instance;
|
|
@@ -154275,8 +154385,8 @@ protoOf(JsBot$markGroupMessagesAsRead$slambda).n9 = function() {
|
|
|
154275
154385
|
while (true);
|
|
154276
154386
|
};
|
|
154277
154387
|
protoOf(JsBot$markGroupMessagesAsRead$slambda).q2u = function($this$promise, completion) {
|
|
154278
|
-
var i$1 = new JsBot$markGroupMessagesAsRead$slambda(this.
|
|
154279
|
-
i$1.
|
|
154388
|
+
var i$1 = new JsBot$markGroupMessagesAsRead$slambda(this.qf2_1, this.rf2_1, this.sf2_1, completion);
|
|
154389
|
+
i$1.tf2_1 = $this$promise;
|
|
154280
154390
|
return i$1;
|
|
154281
154391
|
};
|
|
154282
154392
|
function JsBot$markGroupMessagesAsRead$slambda_0(this$0, $groupUin, $startSequence, resultContinuation) {
|
|
@@ -154288,9 +154398,9 @@ function JsBot$markGroupMessagesAsRead$slambda_0(this$0, $groupUin, $startSequen
|
|
|
154288
154398
|
return l;
|
|
154289
154399
|
}
|
|
154290
154400
|
function JsBot$sendFriendNudge$slambda(this$0, $friendUin, $isSelf, resultContinuation) {
|
|
154291
|
-
this.
|
|
154292
|
-
this.
|
|
154293
|
-
this.
|
|
154401
|
+
this.cf3_1 = this$0;
|
|
154402
|
+
this.df3_1 = $friendUin;
|
|
154403
|
+
this.ef3_1 = $isSelf;
|
|
154294
154404
|
CoroutineImpl.call(this, resultContinuation);
|
|
154295
154405
|
}
|
|
154296
154406
|
protoOf(JsBot$sendFriendNudge$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154310,7 +154420,7 @@ protoOf(JsBot$sendFriendNudge$slambda).n9 = function() {
|
|
|
154310
154420
|
case 0:
|
|
154311
154421
|
this.g9_1 = 2;
|
|
154312
154422
|
this.f9_1 = 1;
|
|
154313
|
-
suspendResult = sendFriendNudge(this.
|
|
154423
|
+
suspendResult = sendFriendNudge(this.cf3_1.teh_1, this.df3_1, this.ef3_1, this);
|
|
154314
154424
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154315
154425
|
continue $sm;
|
|
154316
154426
|
case 1: return Unit_instance;
|
|
@@ -154327,8 +154437,8 @@ protoOf(JsBot$sendFriendNudge$slambda).n9 = function() {
|
|
|
154327
154437
|
while (true);
|
|
154328
154438
|
};
|
|
154329
154439
|
protoOf(JsBot$sendFriendNudge$slambda).q2u = function($this$promise, completion) {
|
|
154330
|
-
var i$1 = new JsBot$sendFriendNudge$slambda(this.
|
|
154331
|
-
i$1.
|
|
154440
|
+
var i$1 = new JsBot$sendFriendNudge$slambda(this.cf3_1, this.df3_1, this.ef3_1, completion);
|
|
154441
|
+
i$1.ff3_1 = $this$promise;
|
|
154332
154442
|
return i$1;
|
|
154333
154443
|
};
|
|
154334
154444
|
function JsBot$sendFriendNudge$slambda_0(this$0, $friendUin, $isSelf, resultContinuation) {
|
|
@@ -154340,9 +154450,9 @@ function JsBot$sendFriendNudge$slambda_0(this$0, $friendUin, $isSelf, resultCont
|
|
|
154340
154450
|
return l;
|
|
154341
154451
|
}
|
|
154342
154452
|
function JsBot$sendProfileLike$slambda(this$0, $friendUin, $count, resultContinuation) {
|
|
154343
|
-
this.
|
|
154344
|
-
this.
|
|
154345
|
-
this.
|
|
154453
|
+
this.of3_1 = this$0;
|
|
154454
|
+
this.pf3_1 = $friendUin;
|
|
154455
|
+
this.qf3_1 = $count;
|
|
154346
154456
|
CoroutineImpl.call(this, resultContinuation);
|
|
154347
154457
|
}
|
|
154348
154458
|
protoOf(JsBot$sendProfileLike$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154362,7 +154472,7 @@ protoOf(JsBot$sendProfileLike$slambda).n9 = function() {
|
|
|
154362
154472
|
case 0:
|
|
154363
154473
|
this.g9_1 = 2;
|
|
154364
154474
|
this.f9_1 = 1;
|
|
154365
|
-
suspendResult = sendProfileLike(this.
|
|
154475
|
+
suspendResult = sendProfileLike(this.of3_1.teh_1, this.pf3_1, this.qf3_1, this);
|
|
154366
154476
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154367
154477
|
continue $sm;
|
|
154368
154478
|
case 1: return Unit_instance;
|
|
@@ -154379,8 +154489,8 @@ protoOf(JsBot$sendProfileLike$slambda).n9 = function() {
|
|
|
154379
154489
|
while (true);
|
|
154380
154490
|
};
|
|
154381
154491
|
protoOf(JsBot$sendProfileLike$slambda).q2u = function($this$promise, completion) {
|
|
154382
|
-
var i$1 = new JsBot$sendProfileLike$slambda(this.
|
|
154383
|
-
i$1.
|
|
154492
|
+
var i$1 = new JsBot$sendProfileLike$slambda(this.of3_1, this.pf3_1, this.qf3_1, completion);
|
|
154493
|
+
i$1.rf3_1 = $this$promise;
|
|
154384
154494
|
return i$1;
|
|
154385
154495
|
};
|
|
154386
154496
|
function JsBot$sendProfileLike$slambda_0(this$0, $friendUin, $count, resultContinuation) {
|
|
@@ -154392,9 +154502,9 @@ function JsBot$sendProfileLike$slambda_0(this$0, $friendUin, $count, resultConti
|
|
|
154392
154502
|
return l;
|
|
154393
154503
|
}
|
|
154394
154504
|
function JsBot$deleteFriend$slambda(this$0, $friendUin, $block, resultContinuation) {
|
|
154395
|
-
this.
|
|
154396
|
-
this.
|
|
154397
|
-
this.
|
|
154505
|
+
this.af4_1 = this$0;
|
|
154506
|
+
this.bf4_1 = $friendUin;
|
|
154507
|
+
this.cf4_1 = $block;
|
|
154398
154508
|
CoroutineImpl.call(this, resultContinuation);
|
|
154399
154509
|
}
|
|
154400
154510
|
protoOf(JsBot$deleteFriend$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154414,7 +154524,7 @@ protoOf(JsBot$deleteFriend$slambda).n9 = function() {
|
|
|
154414
154524
|
case 0:
|
|
154415
154525
|
this.g9_1 = 2;
|
|
154416
154526
|
this.f9_1 = 1;
|
|
154417
|
-
suspendResult = deleteFriend(this.
|
|
154527
|
+
suspendResult = deleteFriend(this.af4_1.teh_1, this.bf4_1, this.cf4_1, this);
|
|
154418
154528
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154419
154529
|
continue $sm;
|
|
154420
154530
|
case 1: return Unit_instance;
|
|
@@ -154431,8 +154541,8 @@ protoOf(JsBot$deleteFriend$slambda).n9 = function() {
|
|
|
154431
154541
|
while (true);
|
|
154432
154542
|
};
|
|
154433
154543
|
protoOf(JsBot$deleteFriend$slambda).q2u = function($this$promise, completion) {
|
|
154434
|
-
var i$1 = new JsBot$deleteFriend$slambda(this.
|
|
154435
|
-
i$1.
|
|
154544
|
+
var i$1 = new JsBot$deleteFriend$slambda(this.af4_1, this.bf4_1, this.cf4_1, completion);
|
|
154545
|
+
i$1.df4_1 = $this$promise;
|
|
154436
154546
|
return i$1;
|
|
154437
154547
|
};
|
|
154438
154548
|
function JsBot$deleteFriend$slambda_0(this$0, $friendUin, $block, resultContinuation) {
|
|
@@ -154444,19 +154554,19 @@ function JsBot$deleteFriend$slambda_0(this$0, $friendUin, $block, resultContinua
|
|
|
154444
154554
|
return l;
|
|
154445
154555
|
}
|
|
154446
154556
|
function JsBot$getFriendRequests$slambda(this$0, $isFiltered, $limit, resultContinuation) {
|
|
154447
|
-
this.
|
|
154448
|
-
this.
|
|
154449
|
-
this.
|
|
154557
|
+
this.mf4_1 = this$0;
|
|
154558
|
+
this.nf4_1 = $isFiltered;
|
|
154559
|
+
this.of4_1 = $limit;
|
|
154450
154560
|
CoroutineImpl.call(this, resultContinuation);
|
|
154451
154561
|
}
|
|
154452
|
-
protoOf(JsBot$getFriendRequests$slambda).
|
|
154562
|
+
protoOf(JsBot$getFriendRequests$slambda).qf4 = function($this$promise, $completion) {
|
|
154453
154563
|
var tmp = this.q2u($this$promise, $completion);
|
|
154454
154564
|
tmp.h9_1 = Unit_instance;
|
|
154455
154565
|
tmp.i9_1 = null;
|
|
154456
154566
|
return tmp.n9();
|
|
154457
154567
|
};
|
|
154458
154568
|
protoOf(JsBot$getFriendRequests$slambda).aa = function(p1, $completion) {
|
|
154459
|
-
return this.
|
|
154569
|
+
return this.qf4((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
154460
154570
|
};
|
|
154461
154571
|
protoOf(JsBot$getFriendRequests$slambda).n9 = function() {
|
|
154462
154572
|
var suspendResult = this.h9_1;
|
|
@@ -154466,7 +154576,7 @@ protoOf(JsBot$getFriendRequests$slambda).n9 = function() {
|
|
|
154466
154576
|
case 0:
|
|
154467
154577
|
this.g9_1 = 2;
|
|
154468
154578
|
this.f9_1 = 1;
|
|
154469
|
-
suspendResult = getFriendRequests(this.
|
|
154579
|
+
suspendResult = getFriendRequests(this.mf4_1.teh_1, this.nf4_1, this.of4_1, this);
|
|
154470
154580
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154471
154581
|
continue $sm;
|
|
154472
154582
|
case 1: return copyToArray(suspendResult);
|
|
@@ -154483,23 +154593,23 @@ protoOf(JsBot$getFriendRequests$slambda).n9 = function() {
|
|
|
154483
154593
|
while (true);
|
|
154484
154594
|
};
|
|
154485
154595
|
protoOf(JsBot$getFriendRequests$slambda).q2u = function($this$promise, completion) {
|
|
154486
|
-
var i$1 = new JsBot$getFriendRequests$slambda(this.
|
|
154487
|
-
i$1.
|
|
154596
|
+
var i$1 = new JsBot$getFriendRequests$slambda(this.mf4_1, this.nf4_1, this.of4_1, completion);
|
|
154597
|
+
i$1.pf4_1 = $this$promise;
|
|
154488
154598
|
return i$1;
|
|
154489
154599
|
};
|
|
154490
154600
|
function JsBot$getFriendRequests$slambda_0(this$0, $isFiltered, $limit, resultContinuation) {
|
|
154491
154601
|
var i$1 = new JsBot$getFriendRequests$slambda(this$0, $isFiltered, $limit, resultContinuation);
|
|
154492
154602
|
var l = function($this$promise, $completion) {
|
|
154493
|
-
return i$1.
|
|
154603
|
+
return i$1.qf4($this$promise, $completion);
|
|
154494
154604
|
};
|
|
154495
154605
|
l.$arity = 1;
|
|
154496
154606
|
return l;
|
|
154497
154607
|
}
|
|
154498
154608
|
function JsBot$setFriendRequest$slambda(this$0, $initiatorUid, $accept, $isFiltered, resultContinuation) {
|
|
154499
|
-
this.
|
|
154500
|
-
this.
|
|
154501
|
-
this.
|
|
154502
|
-
this.
|
|
154609
|
+
this.zf4_1 = this$0;
|
|
154610
|
+
this.af5_1 = $initiatorUid;
|
|
154611
|
+
this.bf5_1 = $accept;
|
|
154612
|
+
this.cf5_1 = $isFiltered;
|
|
154503
154613
|
CoroutineImpl.call(this, resultContinuation);
|
|
154504
154614
|
}
|
|
154505
154615
|
protoOf(JsBot$setFriendRequest$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154519,7 +154629,7 @@ protoOf(JsBot$setFriendRequest$slambda).n9 = function() {
|
|
|
154519
154629
|
case 0:
|
|
154520
154630
|
this.g9_1 = 2;
|
|
154521
154631
|
this.f9_1 = 1;
|
|
154522
|
-
suspendResult = setFriendRequest(this.
|
|
154632
|
+
suspendResult = setFriendRequest(this.zf4_1.teh_1, this.af5_1, this.bf5_1, this.cf5_1, this);
|
|
154523
154633
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154524
154634
|
continue $sm;
|
|
154525
154635
|
case 1: return Unit_instance;
|
|
@@ -154536,8 +154646,8 @@ protoOf(JsBot$setFriendRequest$slambda).n9 = function() {
|
|
|
154536
154646
|
while (true);
|
|
154537
154647
|
};
|
|
154538
154648
|
protoOf(JsBot$setFriendRequest$slambda).q2u = function($this$promise, completion) {
|
|
154539
|
-
var i$1 = new JsBot$setFriendRequest$slambda(this.
|
|
154540
|
-
i$1.
|
|
154649
|
+
var i$1 = new JsBot$setFriendRequest$slambda(this.zf4_1, this.af5_1, this.bf5_1, this.cf5_1, completion);
|
|
154650
|
+
i$1.df5_1 = $this$promise;
|
|
154541
154651
|
return i$1;
|
|
154542
154652
|
};
|
|
154543
154653
|
function JsBot$setFriendRequest$slambda_0(this$0, $initiatorUid, $accept, $isFiltered, resultContinuation) {
|
|
@@ -154549,9 +154659,9 @@ function JsBot$setFriendRequest$slambda_0(this$0, $initiatorUid, $accept, $isFil
|
|
|
154549
154659
|
return l;
|
|
154550
154660
|
}
|
|
154551
154661
|
function JsBot$setGroupName$slambda(this$0, $groupUin, $groupName, resultContinuation) {
|
|
154552
|
-
this.
|
|
154553
|
-
this.
|
|
154554
|
-
this.
|
|
154662
|
+
this.mf5_1 = this$0;
|
|
154663
|
+
this.nf5_1 = $groupUin;
|
|
154664
|
+
this.of5_1 = $groupName;
|
|
154555
154665
|
CoroutineImpl.call(this, resultContinuation);
|
|
154556
154666
|
}
|
|
154557
154667
|
protoOf(JsBot$setGroupName$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154571,7 +154681,7 @@ protoOf(JsBot$setGroupName$slambda).n9 = function() {
|
|
|
154571
154681
|
case 0:
|
|
154572
154682
|
this.g9_1 = 2;
|
|
154573
154683
|
this.f9_1 = 1;
|
|
154574
|
-
suspendResult = setGroupName(this.
|
|
154684
|
+
suspendResult = setGroupName(this.mf5_1.teh_1, this.nf5_1, this.of5_1, this);
|
|
154575
154685
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154576
154686
|
continue $sm;
|
|
154577
154687
|
case 1: return Unit_instance;
|
|
@@ -154588,8 +154698,8 @@ protoOf(JsBot$setGroupName$slambda).n9 = function() {
|
|
|
154588
154698
|
while (true);
|
|
154589
154699
|
};
|
|
154590
154700
|
protoOf(JsBot$setGroupName$slambda).q2u = function($this$promise, completion) {
|
|
154591
|
-
var i$1 = new JsBot$setGroupName$slambda(this.
|
|
154592
|
-
i$1.
|
|
154701
|
+
var i$1 = new JsBot$setGroupName$slambda(this.mf5_1, this.nf5_1, this.of5_1, completion);
|
|
154702
|
+
i$1.pf5_1 = $this$promise;
|
|
154593
154703
|
return i$1;
|
|
154594
154704
|
};
|
|
154595
154705
|
function JsBot$setGroupName$slambda_0(this$0, $groupUin, $groupName, resultContinuation) {
|
|
@@ -154601,9 +154711,9 @@ function JsBot$setGroupName$slambda_0(this$0, $groupUin, $groupName, resultConti
|
|
|
154601
154711
|
return l;
|
|
154602
154712
|
}
|
|
154603
154713
|
function JsBot$setGroupAvatar$slambda(this$0, $groupUin, $imageData, resultContinuation) {
|
|
154604
|
-
this.
|
|
154605
|
-
this.
|
|
154606
|
-
this.
|
|
154714
|
+
this.yf5_1 = this$0;
|
|
154715
|
+
this.zf5_1 = $groupUin;
|
|
154716
|
+
this.af6_1 = $imageData;
|
|
154607
154717
|
CoroutineImpl.call(this, resultContinuation);
|
|
154608
154718
|
}
|
|
154609
154719
|
protoOf(JsBot$setGroupAvatar$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154623,7 +154733,7 @@ protoOf(JsBot$setGroupAvatar$slambda).n9 = function() {
|
|
|
154623
154733
|
case 0:
|
|
154624
154734
|
this.g9_1 = 2;
|
|
154625
154735
|
this.f9_1 = 1;
|
|
154626
|
-
suspendResult = setGroupAvatar(this.
|
|
154736
|
+
suspendResult = setGroupAvatar(this.yf5_1.teh_1, this.zf5_1, this.af6_1, this);
|
|
154627
154737
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154628
154738
|
continue $sm;
|
|
154629
154739
|
case 1: return Unit_instance;
|
|
@@ -154640,8 +154750,8 @@ protoOf(JsBot$setGroupAvatar$slambda).n9 = function() {
|
|
|
154640
154750
|
while (true);
|
|
154641
154751
|
};
|
|
154642
154752
|
protoOf(JsBot$setGroupAvatar$slambda).q2u = function($this$promise, completion) {
|
|
154643
|
-
var i$1 = new JsBot$setGroupAvatar$slambda(this.
|
|
154644
|
-
i$1.
|
|
154753
|
+
var i$1 = new JsBot$setGroupAvatar$slambda(this.yf5_1, this.zf5_1, this.af6_1, completion);
|
|
154754
|
+
i$1.bf6_1 = $this$promise;
|
|
154645
154755
|
return i$1;
|
|
154646
154756
|
};
|
|
154647
154757
|
function JsBot$setGroupAvatar$slambda_0(this$0, $groupUin, $imageData, resultContinuation) {
|
|
@@ -154653,10 +154763,10 @@ function JsBot$setGroupAvatar$slambda_0(this$0, $groupUin, $imageData, resultCon
|
|
|
154653
154763
|
return l;
|
|
154654
154764
|
}
|
|
154655
154765
|
function JsBot$setGroupMemberCard$slambda(this$0, $groupUin, $memberUin, $card, resultContinuation) {
|
|
154656
|
-
this.
|
|
154657
|
-
this.
|
|
154658
|
-
this.
|
|
154659
|
-
this.
|
|
154766
|
+
this.kf6_1 = this$0;
|
|
154767
|
+
this.lf6_1 = $groupUin;
|
|
154768
|
+
this.mf6_1 = $memberUin;
|
|
154769
|
+
this.nf6_1 = $card;
|
|
154660
154770
|
CoroutineImpl.call(this, resultContinuation);
|
|
154661
154771
|
}
|
|
154662
154772
|
protoOf(JsBot$setGroupMemberCard$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154676,7 +154786,7 @@ protoOf(JsBot$setGroupMemberCard$slambda).n9 = function() {
|
|
|
154676
154786
|
case 0:
|
|
154677
154787
|
this.g9_1 = 2;
|
|
154678
154788
|
this.f9_1 = 1;
|
|
154679
|
-
suspendResult = setGroupMemberCard(this.
|
|
154789
|
+
suspendResult = setGroupMemberCard(this.kf6_1.teh_1, this.lf6_1, this.mf6_1, this.nf6_1, this);
|
|
154680
154790
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154681
154791
|
continue $sm;
|
|
154682
154792
|
case 1: return Unit_instance;
|
|
@@ -154693,8 +154803,8 @@ protoOf(JsBot$setGroupMemberCard$slambda).n9 = function() {
|
|
|
154693
154803
|
while (true);
|
|
154694
154804
|
};
|
|
154695
154805
|
protoOf(JsBot$setGroupMemberCard$slambda).q2u = function($this$promise, completion) {
|
|
154696
|
-
var i$1 = new JsBot$setGroupMemberCard$slambda(this.
|
|
154697
|
-
i$1.
|
|
154806
|
+
var i$1 = new JsBot$setGroupMemberCard$slambda(this.kf6_1, this.lf6_1, this.mf6_1, this.nf6_1, completion);
|
|
154807
|
+
i$1.of6_1 = $this$promise;
|
|
154698
154808
|
return i$1;
|
|
154699
154809
|
};
|
|
154700
154810
|
function JsBot$setGroupMemberCard$slambda_0(this$0, $groupUin, $memberUin, $card, resultContinuation) {
|
|
@@ -154706,10 +154816,10 @@ function JsBot$setGroupMemberCard$slambda_0(this$0, $groupUin, $memberUin, $card
|
|
|
154706
154816
|
return l;
|
|
154707
154817
|
}
|
|
154708
154818
|
function JsBot$setGroupMemberSpecialTitle$slambda(this$0, $groupUin, $memberUin, $specialTitle, resultContinuation) {
|
|
154709
|
-
this.
|
|
154710
|
-
this.
|
|
154711
|
-
this.
|
|
154712
|
-
this.
|
|
154819
|
+
this.xf6_1 = this$0;
|
|
154820
|
+
this.yf6_1 = $groupUin;
|
|
154821
|
+
this.zf6_1 = $memberUin;
|
|
154822
|
+
this.af7_1 = $specialTitle;
|
|
154713
154823
|
CoroutineImpl.call(this, resultContinuation);
|
|
154714
154824
|
}
|
|
154715
154825
|
protoOf(JsBot$setGroupMemberSpecialTitle$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154729,7 +154839,7 @@ protoOf(JsBot$setGroupMemberSpecialTitle$slambda).n9 = function() {
|
|
|
154729
154839
|
case 0:
|
|
154730
154840
|
this.g9_1 = 2;
|
|
154731
154841
|
this.f9_1 = 1;
|
|
154732
|
-
suspendResult = setGroupMemberSpecialTitle(this.
|
|
154842
|
+
suspendResult = setGroupMemberSpecialTitle(this.xf6_1.teh_1, this.yf6_1, this.zf6_1, this.af7_1, this);
|
|
154733
154843
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154734
154844
|
continue $sm;
|
|
154735
154845
|
case 1: return Unit_instance;
|
|
@@ -154746,8 +154856,8 @@ protoOf(JsBot$setGroupMemberSpecialTitle$slambda).n9 = function() {
|
|
|
154746
154856
|
while (true);
|
|
154747
154857
|
};
|
|
154748
154858
|
protoOf(JsBot$setGroupMemberSpecialTitle$slambda).q2u = function($this$promise, completion) {
|
|
154749
|
-
var i$1 = new JsBot$setGroupMemberSpecialTitle$slambda(this.
|
|
154750
|
-
i$1.
|
|
154859
|
+
var i$1 = new JsBot$setGroupMemberSpecialTitle$slambda(this.xf6_1, this.yf6_1, this.zf6_1, this.af7_1, completion);
|
|
154860
|
+
i$1.bf7_1 = $this$promise;
|
|
154751
154861
|
return i$1;
|
|
154752
154862
|
};
|
|
154753
154863
|
function JsBot$setGroupMemberSpecialTitle$slambda_0(this$0, $groupUin, $memberUin, $specialTitle, resultContinuation) {
|
|
@@ -154759,10 +154869,10 @@ function JsBot$setGroupMemberSpecialTitle$slambda_0(this$0, $groupUin, $memberUi
|
|
|
154759
154869
|
return l;
|
|
154760
154870
|
}
|
|
154761
154871
|
function JsBot$setGroupMemberAdmin$slambda(this$0, $groupUin, $memberUin, $isAdmin, resultContinuation) {
|
|
154762
|
-
this.
|
|
154763
|
-
this.
|
|
154764
|
-
this.
|
|
154765
|
-
this.
|
|
154872
|
+
this.kf7_1 = this$0;
|
|
154873
|
+
this.lf7_1 = $groupUin;
|
|
154874
|
+
this.mf7_1 = $memberUin;
|
|
154875
|
+
this.nf7_1 = $isAdmin;
|
|
154766
154876
|
CoroutineImpl.call(this, resultContinuation);
|
|
154767
154877
|
}
|
|
154768
154878
|
protoOf(JsBot$setGroupMemberAdmin$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154782,7 +154892,7 @@ protoOf(JsBot$setGroupMemberAdmin$slambda).n9 = function() {
|
|
|
154782
154892
|
case 0:
|
|
154783
154893
|
this.g9_1 = 2;
|
|
154784
154894
|
this.f9_1 = 1;
|
|
154785
|
-
suspendResult = setGroupMemberAdmin(this.
|
|
154895
|
+
suspendResult = setGroupMemberAdmin(this.kf7_1.teh_1, this.lf7_1, this.mf7_1, this.nf7_1, this);
|
|
154786
154896
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154787
154897
|
continue $sm;
|
|
154788
154898
|
case 1: return Unit_instance;
|
|
@@ -154799,8 +154909,8 @@ protoOf(JsBot$setGroupMemberAdmin$slambda).n9 = function() {
|
|
|
154799
154909
|
while (true);
|
|
154800
154910
|
};
|
|
154801
154911
|
protoOf(JsBot$setGroupMemberAdmin$slambda).q2u = function($this$promise, completion) {
|
|
154802
|
-
var i$1 = new JsBot$setGroupMemberAdmin$slambda(this.
|
|
154803
|
-
i$1.
|
|
154912
|
+
var i$1 = new JsBot$setGroupMemberAdmin$slambda(this.kf7_1, this.lf7_1, this.mf7_1, this.nf7_1, completion);
|
|
154913
|
+
i$1.of7_1 = $this$promise;
|
|
154804
154914
|
return i$1;
|
|
154805
154915
|
};
|
|
154806
154916
|
function JsBot$setGroupMemberAdmin$slambda_0(this$0, $groupUin, $memberUin, $isAdmin, resultContinuation) {
|
|
@@ -154812,10 +154922,10 @@ function JsBot$setGroupMemberAdmin$slambda_0(this$0, $groupUin, $memberUin, $isA
|
|
|
154812
154922
|
return l;
|
|
154813
154923
|
}
|
|
154814
154924
|
function JsBot$setGroupMemberMute$slambda(this$0, $groupUin, $memberUin, $duration, resultContinuation) {
|
|
154815
|
-
this.
|
|
154816
|
-
this.
|
|
154817
|
-
this.
|
|
154818
|
-
this.
|
|
154925
|
+
this.xf7_1 = this$0;
|
|
154926
|
+
this.yf7_1 = $groupUin;
|
|
154927
|
+
this.zf7_1 = $memberUin;
|
|
154928
|
+
this.af8_1 = $duration;
|
|
154819
154929
|
CoroutineImpl.call(this, resultContinuation);
|
|
154820
154930
|
}
|
|
154821
154931
|
protoOf(JsBot$setGroupMemberMute$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154835,7 +154945,7 @@ protoOf(JsBot$setGroupMemberMute$slambda).n9 = function() {
|
|
|
154835
154945
|
case 0:
|
|
154836
154946
|
this.g9_1 = 2;
|
|
154837
154947
|
this.f9_1 = 1;
|
|
154838
|
-
suspendResult = setGroupMemberMute(this.
|
|
154948
|
+
suspendResult = setGroupMemberMute(this.xf7_1.teh_1, this.yf7_1, this.zf7_1, this.af8_1, this);
|
|
154839
154949
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154840
154950
|
continue $sm;
|
|
154841
154951
|
case 1: return Unit_instance;
|
|
@@ -154852,8 +154962,8 @@ protoOf(JsBot$setGroupMemberMute$slambda).n9 = function() {
|
|
|
154852
154962
|
while (true);
|
|
154853
154963
|
};
|
|
154854
154964
|
protoOf(JsBot$setGroupMemberMute$slambda).q2u = function($this$promise, completion) {
|
|
154855
|
-
var i$1 = new JsBot$setGroupMemberMute$slambda(this.
|
|
154856
|
-
i$1.
|
|
154965
|
+
var i$1 = new JsBot$setGroupMemberMute$slambda(this.xf7_1, this.yf7_1, this.zf7_1, this.af8_1, completion);
|
|
154966
|
+
i$1.bf8_1 = $this$promise;
|
|
154857
154967
|
return i$1;
|
|
154858
154968
|
};
|
|
154859
154969
|
function JsBot$setGroupMemberMute$slambda_0(this$0, $groupUin, $memberUin, $duration, resultContinuation) {
|
|
@@ -154865,9 +154975,9 @@ function JsBot$setGroupMemberMute$slambda_0(this$0, $groupUin, $memberUin, $dura
|
|
|
154865
154975
|
return l;
|
|
154866
154976
|
}
|
|
154867
154977
|
function JsBot$setGroupWholeMute$slambda(this$0, $groupUin, $isMute, resultContinuation) {
|
|
154868
|
-
this.
|
|
154869
|
-
this.
|
|
154870
|
-
this.
|
|
154978
|
+
this.kf8_1 = this$0;
|
|
154979
|
+
this.lf8_1 = $groupUin;
|
|
154980
|
+
this.mf8_1 = $isMute;
|
|
154871
154981
|
CoroutineImpl.call(this, resultContinuation);
|
|
154872
154982
|
}
|
|
154873
154983
|
protoOf(JsBot$setGroupWholeMute$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154887,7 +154997,7 @@ protoOf(JsBot$setGroupWholeMute$slambda).n9 = function() {
|
|
|
154887
154997
|
case 0:
|
|
154888
154998
|
this.g9_1 = 2;
|
|
154889
154999
|
this.f9_1 = 1;
|
|
154890
|
-
suspendResult = setGroupWholeMute(this.
|
|
155000
|
+
suspendResult = setGroupWholeMute(this.kf8_1.teh_1, this.lf8_1, this.mf8_1, this);
|
|
154891
155001
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154892
155002
|
continue $sm;
|
|
154893
155003
|
case 1: return Unit_instance;
|
|
@@ -154904,8 +155014,8 @@ protoOf(JsBot$setGroupWholeMute$slambda).n9 = function() {
|
|
|
154904
155014
|
while (true);
|
|
154905
155015
|
};
|
|
154906
155016
|
protoOf(JsBot$setGroupWholeMute$slambda).q2u = function($this$promise, completion) {
|
|
154907
|
-
var i$1 = new JsBot$setGroupWholeMute$slambda(this.
|
|
154908
|
-
i$1.
|
|
155017
|
+
var i$1 = new JsBot$setGroupWholeMute$slambda(this.kf8_1, this.lf8_1, this.mf8_1, completion);
|
|
155018
|
+
i$1.nf8_1 = $this$promise;
|
|
154909
155019
|
return i$1;
|
|
154910
155020
|
};
|
|
154911
155021
|
function JsBot$setGroupWholeMute$slambda_0(this$0, $groupUin, $isMute, resultContinuation) {
|
|
@@ -154917,11 +155027,11 @@ function JsBot$setGroupWholeMute$slambda_0(this$0, $groupUin, $isMute, resultCon
|
|
|
154917
155027
|
return l;
|
|
154918
155028
|
}
|
|
154919
155029
|
function JsBot$kickGroupMember$slambda(this$0, $groupUin, $memberUin, $rejectAddRequest, $reason, resultContinuation) {
|
|
154920
|
-
this.
|
|
154921
|
-
this.
|
|
154922
|
-
this.
|
|
154923
|
-
this.
|
|
154924
|
-
this.
|
|
155030
|
+
this.wf8_1 = this$0;
|
|
155031
|
+
this.xf8_1 = $groupUin;
|
|
155032
|
+
this.yf8_1 = $memberUin;
|
|
155033
|
+
this.zf8_1 = $rejectAddRequest;
|
|
155034
|
+
this.af9_1 = $reason;
|
|
154925
155035
|
CoroutineImpl.call(this, resultContinuation);
|
|
154926
155036
|
}
|
|
154927
155037
|
protoOf(JsBot$kickGroupMember$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -154941,7 +155051,7 @@ protoOf(JsBot$kickGroupMember$slambda).n9 = function() {
|
|
|
154941
155051
|
case 0:
|
|
154942
155052
|
this.g9_1 = 2;
|
|
154943
155053
|
this.f9_1 = 1;
|
|
154944
|
-
suspendResult = kickGroupMember(this.
|
|
155054
|
+
suspendResult = kickGroupMember(this.wf8_1.teh_1, this.xf8_1, this.yf8_1, this.zf8_1, this.af9_1, this);
|
|
154945
155055
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154946
155056
|
continue $sm;
|
|
154947
155057
|
case 1: return Unit_instance;
|
|
@@ -154958,8 +155068,8 @@ protoOf(JsBot$kickGroupMember$slambda).n9 = function() {
|
|
|
154958
155068
|
while (true);
|
|
154959
155069
|
};
|
|
154960
155070
|
protoOf(JsBot$kickGroupMember$slambda).q2u = function($this$promise, completion) {
|
|
154961
|
-
var i$1 = new JsBot$kickGroupMember$slambda(this.
|
|
154962
|
-
i$1.
|
|
155071
|
+
var i$1 = new JsBot$kickGroupMember$slambda(this.wf8_1, this.xf8_1, this.yf8_1, this.zf8_1, this.af9_1, completion);
|
|
155072
|
+
i$1.bf9_1 = $this$promise;
|
|
154963
155073
|
return i$1;
|
|
154964
155074
|
};
|
|
154965
155075
|
function JsBot$kickGroupMember$slambda_0(this$0, $groupUin, $memberUin, $rejectAddRequest, $reason, resultContinuation) {
|
|
@@ -154971,18 +155081,18 @@ function JsBot$kickGroupMember$slambda_0(this$0, $groupUin, $memberUin, $rejectA
|
|
|
154971
155081
|
return l;
|
|
154972
155082
|
}
|
|
154973
155083
|
function JsBot$getGroupAnnouncements$slambda(this$0, $groupUin, resultContinuation) {
|
|
154974
|
-
this.
|
|
154975
|
-
this.
|
|
155084
|
+
this.kf9_1 = this$0;
|
|
155085
|
+
this.lf9_1 = $groupUin;
|
|
154976
155086
|
CoroutineImpl.call(this, resultContinuation);
|
|
154977
155087
|
}
|
|
154978
|
-
protoOf(JsBot$getGroupAnnouncements$slambda).
|
|
155088
|
+
protoOf(JsBot$getGroupAnnouncements$slambda).nf9 = function($this$promise, $completion) {
|
|
154979
155089
|
var tmp = this.q2u($this$promise, $completion);
|
|
154980
155090
|
tmp.h9_1 = Unit_instance;
|
|
154981
155091
|
tmp.i9_1 = null;
|
|
154982
155092
|
return tmp.n9();
|
|
154983
155093
|
};
|
|
154984
155094
|
protoOf(JsBot$getGroupAnnouncements$slambda).aa = function(p1, $completion) {
|
|
154985
|
-
return this.
|
|
155095
|
+
return this.nf9((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
154986
155096
|
};
|
|
154987
155097
|
protoOf(JsBot$getGroupAnnouncements$slambda).n9 = function() {
|
|
154988
155098
|
var suspendResult = this.h9_1;
|
|
@@ -154992,7 +155102,7 @@ protoOf(JsBot$getGroupAnnouncements$slambda).n9 = function() {
|
|
|
154992
155102
|
case 0:
|
|
154993
155103
|
this.g9_1 = 2;
|
|
154994
155104
|
this.f9_1 = 1;
|
|
154995
|
-
suspendResult = getGroupAnnouncements(this.
|
|
155105
|
+
suspendResult = getGroupAnnouncements(this.kf9_1.teh_1, this.lf9_1, this);
|
|
154996
155106
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
154997
155107
|
continue $sm;
|
|
154998
155108
|
case 1: return copyToArray(suspendResult);
|
|
@@ -155009,27 +155119,27 @@ protoOf(JsBot$getGroupAnnouncements$slambda).n9 = function() {
|
|
|
155009
155119
|
while (true);
|
|
155010
155120
|
};
|
|
155011
155121
|
protoOf(JsBot$getGroupAnnouncements$slambda).q2u = function($this$promise, completion) {
|
|
155012
|
-
var i$1 = new JsBot$getGroupAnnouncements$slambda(this.
|
|
155013
|
-
i$1.
|
|
155122
|
+
var i$1 = new JsBot$getGroupAnnouncements$slambda(this.kf9_1, this.lf9_1, completion);
|
|
155123
|
+
i$1.mf9_1 = $this$promise;
|
|
155014
155124
|
return i$1;
|
|
155015
155125
|
};
|
|
155016
155126
|
function JsBot$getGroupAnnouncements$slambda_0(this$0, $groupUin, resultContinuation) {
|
|
155017
155127
|
var i$1 = new JsBot$getGroupAnnouncements$slambda(this$0, $groupUin, resultContinuation);
|
|
155018
155128
|
var l = function($this$promise, $completion) {
|
|
155019
|
-
return i$1.
|
|
155129
|
+
return i$1.nf9($this$promise, $completion);
|
|
155020
155130
|
};
|
|
155021
155131
|
l.$arity = 1;
|
|
155022
155132
|
return l;
|
|
155023
155133
|
}
|
|
155024
155134
|
function JsBot$sendGroupAnnouncement$slambda(this$0, $groupUin, $content, $imageData, $showEditCard, $showTipWindow, $confirmRequired, $isPinned, resultContinuation) {
|
|
155025
|
-
this.
|
|
155026
|
-
this.
|
|
155027
|
-
this.
|
|
155028
|
-
this.
|
|
155029
|
-
this.
|
|
155030
|
-
this.
|
|
155031
|
-
this.
|
|
155032
|
-
this.
|
|
155135
|
+
this.wf9_1 = this$0;
|
|
155136
|
+
this.xf9_1 = $groupUin;
|
|
155137
|
+
this.yf9_1 = $content;
|
|
155138
|
+
this.zf9_1 = $imageData;
|
|
155139
|
+
this.afa_1 = $showEditCard;
|
|
155140
|
+
this.bfa_1 = $showTipWindow;
|
|
155141
|
+
this.cfa_1 = $confirmRequired;
|
|
155142
|
+
this.dfa_1 = $isPinned;
|
|
155033
155143
|
CoroutineImpl.call(this, resultContinuation);
|
|
155034
155144
|
}
|
|
155035
155145
|
protoOf(JsBot$sendGroupAnnouncement$slambda).ber = function($this$promise, $completion) {
|
|
@@ -155049,7 +155159,7 @@ protoOf(JsBot$sendGroupAnnouncement$slambda).n9 = function() {
|
|
|
155049
155159
|
case 0:
|
|
155050
155160
|
this.g9_1 = 2;
|
|
155051
155161
|
this.f9_1 = 1;
|
|
155052
|
-
suspendResult = sendGroupAnnouncement(this.
|
|
155162
|
+
suspendResult = sendGroupAnnouncement(this.wf9_1.teh_1, this.xf9_1, this.yf9_1, this.zf9_1, this.afa_1, this.bfa_1, this.cfa_1, this.dfa_1, this);
|
|
155053
155163
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155054
155164
|
continue $sm;
|
|
155055
155165
|
case 1: return suspendResult;
|
|
@@ -155066,8 +155176,8 @@ protoOf(JsBot$sendGroupAnnouncement$slambda).n9 = function() {
|
|
|
155066
155176
|
while (true);
|
|
155067
155177
|
};
|
|
155068
155178
|
protoOf(JsBot$sendGroupAnnouncement$slambda).q2u = function($this$promise, completion) {
|
|
155069
|
-
var i$1 = new JsBot$sendGroupAnnouncement$slambda(this.
|
|
155070
|
-
i$1.
|
|
155179
|
+
var i$1 = new JsBot$sendGroupAnnouncement$slambda(this.wf9_1, this.xf9_1, this.yf9_1, this.zf9_1, this.afa_1, this.bfa_1, this.cfa_1, this.dfa_1, completion);
|
|
155180
|
+
i$1.efa_1 = $this$promise;
|
|
155071
155181
|
return i$1;
|
|
155072
155182
|
};
|
|
155073
155183
|
function JsBot$sendGroupAnnouncement$slambda_0(this$0, $groupUin, $content, $imageData, $showEditCard, $showTipWindow, $confirmRequired, $isPinned, resultContinuation) {
|
|
@@ -155079,9 +155189,9 @@ function JsBot$sendGroupAnnouncement$slambda_0(this$0, $groupUin, $content, $ima
|
|
|
155079
155189
|
return l;
|
|
155080
155190
|
}
|
|
155081
155191
|
function JsBot$deleteGroupAnnouncement$slambda(this$0, $groupUin, $announcementId, resultContinuation) {
|
|
155082
|
-
this.
|
|
155083
|
-
this.
|
|
155084
|
-
this.
|
|
155192
|
+
this.nfa_1 = this$0;
|
|
155193
|
+
this.ofa_1 = $groupUin;
|
|
155194
|
+
this.pfa_1 = $announcementId;
|
|
155085
155195
|
CoroutineImpl.call(this, resultContinuation);
|
|
155086
155196
|
}
|
|
155087
155197
|
protoOf(JsBot$deleteGroupAnnouncement$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155101,7 +155211,7 @@ protoOf(JsBot$deleteGroupAnnouncement$slambda).n9 = function() {
|
|
|
155101
155211
|
case 0:
|
|
155102
155212
|
this.g9_1 = 2;
|
|
155103
155213
|
this.f9_1 = 1;
|
|
155104
|
-
suspendResult = deleteGroupAnnouncement(this.
|
|
155214
|
+
suspendResult = deleteGroupAnnouncement(this.nfa_1.teh_1, this.ofa_1, this.pfa_1, this);
|
|
155105
155215
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155106
155216
|
continue $sm;
|
|
155107
155217
|
case 1: return Unit_instance;
|
|
@@ -155118,8 +155228,8 @@ protoOf(JsBot$deleteGroupAnnouncement$slambda).n9 = function() {
|
|
|
155118
155228
|
while (true);
|
|
155119
155229
|
};
|
|
155120
155230
|
protoOf(JsBot$deleteGroupAnnouncement$slambda).q2u = function($this$promise, completion) {
|
|
155121
|
-
var i$1 = new JsBot$deleteGroupAnnouncement$slambda(this.
|
|
155122
|
-
i$1.
|
|
155231
|
+
var i$1 = new JsBot$deleteGroupAnnouncement$slambda(this.nfa_1, this.ofa_1, this.pfa_1, completion);
|
|
155232
|
+
i$1.qfa_1 = $this$promise;
|
|
155123
155233
|
return i$1;
|
|
155124
155234
|
};
|
|
155125
155235
|
function JsBot$deleteGroupAnnouncement$slambda_0(this$0, $groupUin, $announcementId, resultContinuation) {
|
|
@@ -155131,20 +155241,20 @@ function JsBot$deleteGroupAnnouncement$slambda_0(this$0, $groupUin, $announcemen
|
|
|
155131
155241
|
return l;
|
|
155132
155242
|
}
|
|
155133
155243
|
function JsBot$getGroupEssenceMessages$slambda(this$0, $groupUin, $pageIndex, $pageSize, resultContinuation) {
|
|
155134
|
-
this.
|
|
155135
|
-
this.
|
|
155136
|
-
this.
|
|
155137
|
-
this.
|
|
155244
|
+
this.zfa_1 = this$0;
|
|
155245
|
+
this.afb_1 = $groupUin;
|
|
155246
|
+
this.bfb_1 = $pageIndex;
|
|
155247
|
+
this.cfb_1 = $pageSize;
|
|
155138
155248
|
CoroutineImpl.call(this, resultContinuation);
|
|
155139
155249
|
}
|
|
155140
|
-
protoOf(JsBot$getGroupEssenceMessages$slambda).
|
|
155250
|
+
protoOf(JsBot$getGroupEssenceMessages$slambda).efb = function($this$promise, $completion) {
|
|
155141
155251
|
var tmp = this.q2u($this$promise, $completion);
|
|
155142
155252
|
tmp.h9_1 = Unit_instance;
|
|
155143
155253
|
tmp.i9_1 = null;
|
|
155144
155254
|
return tmp.n9();
|
|
155145
155255
|
};
|
|
155146
155256
|
protoOf(JsBot$getGroupEssenceMessages$slambda).aa = function(p1, $completion) {
|
|
155147
|
-
return this.
|
|
155257
|
+
return this.efb((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
155148
155258
|
};
|
|
155149
155259
|
protoOf(JsBot$getGroupEssenceMessages$slambda).n9 = function() {
|
|
155150
155260
|
var suspendResult = this.h9_1;
|
|
@@ -155154,7 +155264,7 @@ protoOf(JsBot$getGroupEssenceMessages$slambda).n9 = function() {
|
|
|
155154
155264
|
case 0:
|
|
155155
155265
|
this.g9_1 = 2;
|
|
155156
155266
|
this.f9_1 = 1;
|
|
155157
|
-
suspendResult = getGroupEssenceMessages(this.
|
|
155267
|
+
suspendResult = getGroupEssenceMessages(this.zfa_1.teh_1, this.afb_1, this.bfb_1, this.cfb_1, this);
|
|
155158
155268
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155159
155269
|
continue $sm;
|
|
155160
155270
|
case 1: return suspendResult;
|
|
@@ -155171,23 +155281,23 @@ protoOf(JsBot$getGroupEssenceMessages$slambda).n9 = function() {
|
|
|
155171
155281
|
while (true);
|
|
155172
155282
|
};
|
|
155173
155283
|
protoOf(JsBot$getGroupEssenceMessages$slambda).q2u = function($this$promise, completion) {
|
|
155174
|
-
var i$1 = new JsBot$getGroupEssenceMessages$slambda(this.
|
|
155175
|
-
i$1.
|
|
155284
|
+
var i$1 = new JsBot$getGroupEssenceMessages$slambda(this.zfa_1, this.afb_1, this.bfb_1, this.cfb_1, completion);
|
|
155285
|
+
i$1.dfb_1 = $this$promise;
|
|
155176
155286
|
return i$1;
|
|
155177
155287
|
};
|
|
155178
155288
|
function JsBot$getGroupEssenceMessages$slambda_0(this$0, $groupUin, $pageIndex, $pageSize, resultContinuation) {
|
|
155179
155289
|
var i$1 = new JsBot$getGroupEssenceMessages$slambda(this$0, $groupUin, $pageIndex, $pageSize, resultContinuation);
|
|
155180
155290
|
var l = function($this$promise, $completion) {
|
|
155181
|
-
return i$1.
|
|
155291
|
+
return i$1.efb($this$promise, $completion);
|
|
155182
155292
|
};
|
|
155183
155293
|
l.$arity = 1;
|
|
155184
155294
|
return l;
|
|
155185
155295
|
}
|
|
155186
155296
|
function JsBot$setGroupEssenceMessage$slambda(this$0, $groupUin, $sequence, $isSet, resultContinuation) {
|
|
155187
|
-
this.
|
|
155188
|
-
this.
|
|
155189
|
-
this.
|
|
155190
|
-
this.
|
|
155297
|
+
this.nfb_1 = this$0;
|
|
155298
|
+
this.ofb_1 = $groupUin;
|
|
155299
|
+
this.pfb_1 = $sequence;
|
|
155300
|
+
this.qfb_1 = $isSet;
|
|
155191
155301
|
CoroutineImpl.call(this, resultContinuation);
|
|
155192
155302
|
}
|
|
155193
155303
|
protoOf(JsBot$setGroupEssenceMessage$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155207,7 +155317,7 @@ protoOf(JsBot$setGroupEssenceMessage$slambda).n9 = function() {
|
|
|
155207
155317
|
case 0:
|
|
155208
155318
|
this.g9_1 = 2;
|
|
155209
155319
|
this.f9_1 = 1;
|
|
155210
|
-
suspendResult = setGroupEssenceMessage(this.
|
|
155320
|
+
suspendResult = setGroupEssenceMessage(this.nfb_1.teh_1, this.ofb_1, this.pfb_1, this.qfb_1, this);
|
|
155211
155321
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155212
155322
|
continue $sm;
|
|
155213
155323
|
case 1: return Unit_instance;
|
|
@@ -155224,8 +155334,8 @@ protoOf(JsBot$setGroupEssenceMessage$slambda).n9 = function() {
|
|
|
155224
155334
|
while (true);
|
|
155225
155335
|
};
|
|
155226
155336
|
protoOf(JsBot$setGroupEssenceMessage$slambda).q2u = function($this$promise, completion) {
|
|
155227
|
-
var i$1 = new JsBot$setGroupEssenceMessage$slambda(this.
|
|
155228
|
-
i$1.
|
|
155337
|
+
var i$1 = new JsBot$setGroupEssenceMessage$slambda(this.nfb_1, this.ofb_1, this.pfb_1, this.qfb_1, completion);
|
|
155338
|
+
i$1.rfb_1 = $this$promise;
|
|
155229
155339
|
return i$1;
|
|
155230
155340
|
};
|
|
155231
155341
|
function JsBot$setGroupEssenceMessage$slambda_0(this$0, $groupUin, $sequence, $isSet, resultContinuation) {
|
|
@@ -155237,8 +155347,8 @@ function JsBot$setGroupEssenceMessage$slambda_0(this$0, $groupUin, $sequence, $i
|
|
|
155237
155347
|
return l;
|
|
155238
155348
|
}
|
|
155239
155349
|
function JsBot$quitGroup$slambda(this$0, $groupUin, resultContinuation) {
|
|
155240
|
-
this.
|
|
155241
|
-
this.
|
|
155350
|
+
this.afc_1 = this$0;
|
|
155351
|
+
this.bfc_1 = $groupUin;
|
|
155242
155352
|
CoroutineImpl.call(this, resultContinuation);
|
|
155243
155353
|
}
|
|
155244
155354
|
protoOf(JsBot$quitGroup$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155258,7 +155368,7 @@ protoOf(JsBot$quitGroup$slambda).n9 = function() {
|
|
|
155258
155368
|
case 0:
|
|
155259
155369
|
this.g9_1 = 2;
|
|
155260
155370
|
this.f9_1 = 1;
|
|
155261
|
-
suspendResult = quitGroup(this.
|
|
155371
|
+
suspendResult = quitGroup(this.afc_1.teh_1, this.bfc_1, this);
|
|
155262
155372
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155263
155373
|
continue $sm;
|
|
155264
155374
|
case 1: return Unit_instance;
|
|
@@ -155275,8 +155385,8 @@ protoOf(JsBot$quitGroup$slambda).n9 = function() {
|
|
|
155275
155385
|
while (true);
|
|
155276
155386
|
};
|
|
155277
155387
|
protoOf(JsBot$quitGroup$slambda).q2u = function($this$promise, completion) {
|
|
155278
|
-
var i$1 = new JsBot$quitGroup$slambda(this.
|
|
155279
|
-
i$1.
|
|
155388
|
+
var i$1 = new JsBot$quitGroup$slambda(this.afc_1, this.bfc_1, completion);
|
|
155389
|
+
i$1.cfc_1 = $this$promise;
|
|
155280
155390
|
return i$1;
|
|
155281
155391
|
};
|
|
155282
155392
|
function JsBot$quitGroup$slambda_0(this$0, $groupUin, resultContinuation) {
|
|
@@ -155288,11 +155398,11 @@ function JsBot$quitGroup$slambda_0(this$0, $groupUin, resultContinuation) {
|
|
|
155288
155398
|
return l;
|
|
155289
155399
|
}
|
|
155290
155400
|
function JsBot$setGroupMessageReaction$slambda(this$0, $groupUin, $sequence, $code, $isAdd, resultContinuation) {
|
|
155291
|
-
this.
|
|
155292
|
-
this.
|
|
155293
|
-
this.
|
|
155294
|
-
this.
|
|
155295
|
-
this.
|
|
155401
|
+
this.lfc_1 = this$0;
|
|
155402
|
+
this.mfc_1 = $groupUin;
|
|
155403
|
+
this.nfc_1 = $sequence;
|
|
155404
|
+
this.ofc_1 = $code;
|
|
155405
|
+
this.pfc_1 = $isAdd;
|
|
155296
155406
|
CoroutineImpl.call(this, resultContinuation);
|
|
155297
155407
|
}
|
|
155298
155408
|
protoOf(JsBot$setGroupMessageReaction$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155312,7 +155422,7 @@ protoOf(JsBot$setGroupMessageReaction$slambda).n9 = function() {
|
|
|
155312
155422
|
case 0:
|
|
155313
155423
|
this.g9_1 = 2;
|
|
155314
155424
|
this.f9_1 = 1;
|
|
155315
|
-
suspendResult = setGroupMessageReaction(this.
|
|
155425
|
+
suspendResult = setGroupMessageReaction(this.lfc_1.teh_1, this.mfc_1, this.nfc_1, this.ofc_1, this.pfc_1, this);
|
|
155316
155426
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155317
155427
|
continue $sm;
|
|
155318
155428
|
case 1: return Unit_instance;
|
|
@@ -155329,8 +155439,8 @@ protoOf(JsBot$setGroupMessageReaction$slambda).n9 = function() {
|
|
|
155329
155439
|
while (true);
|
|
155330
155440
|
};
|
|
155331
155441
|
protoOf(JsBot$setGroupMessageReaction$slambda).q2u = function($this$promise, completion) {
|
|
155332
|
-
var i$1 = new JsBot$setGroupMessageReaction$slambda(this.
|
|
155333
|
-
i$1.
|
|
155442
|
+
var i$1 = new JsBot$setGroupMessageReaction$slambda(this.lfc_1, this.mfc_1, this.nfc_1, this.ofc_1, this.pfc_1, completion);
|
|
155443
|
+
i$1.qfc_1 = $this$promise;
|
|
155334
155444
|
return i$1;
|
|
155335
155445
|
};
|
|
155336
155446
|
function JsBot$setGroupMessageReaction$slambda_0(this$0, $groupUin, $sequence, $code, $isAdd, resultContinuation) {
|
|
@@ -155342,9 +155452,9 @@ function JsBot$setGroupMessageReaction$slambda_0(this$0, $groupUin, $sequence, $
|
|
|
155342
155452
|
return l;
|
|
155343
155453
|
}
|
|
155344
155454
|
function JsBot$sendGroupNudge$slambda(this$0, $groupUin, $targetUin, resultContinuation) {
|
|
155345
|
-
this.
|
|
155346
|
-
this.
|
|
155347
|
-
this.
|
|
155455
|
+
this.zfc_1 = this$0;
|
|
155456
|
+
this.afd_1 = $groupUin;
|
|
155457
|
+
this.bfd_1 = $targetUin;
|
|
155348
155458
|
CoroutineImpl.call(this, resultContinuation);
|
|
155349
155459
|
}
|
|
155350
155460
|
protoOf(JsBot$sendGroupNudge$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155364,7 +155474,7 @@ protoOf(JsBot$sendGroupNudge$slambda).n9 = function() {
|
|
|
155364
155474
|
case 0:
|
|
155365
155475
|
this.g9_1 = 2;
|
|
155366
155476
|
this.f9_1 = 1;
|
|
155367
|
-
suspendResult = sendGroupNudge(this.
|
|
155477
|
+
suspendResult = sendGroupNudge(this.zfc_1.teh_1, this.afd_1, this.bfd_1, this);
|
|
155368
155478
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155369
155479
|
continue $sm;
|
|
155370
155480
|
case 1: return Unit_instance;
|
|
@@ -155381,8 +155491,8 @@ protoOf(JsBot$sendGroupNudge$slambda).n9 = function() {
|
|
|
155381
155491
|
while (true);
|
|
155382
155492
|
};
|
|
155383
155493
|
protoOf(JsBot$sendGroupNudge$slambda).q2u = function($this$promise, completion) {
|
|
155384
|
-
var i$1 = new JsBot$sendGroupNudge$slambda(this.
|
|
155385
|
-
i$1.
|
|
155494
|
+
var i$1 = new JsBot$sendGroupNudge$slambda(this.zfc_1, this.afd_1, this.bfd_1, completion);
|
|
155495
|
+
i$1.cfd_1 = $this$promise;
|
|
155386
155496
|
return i$1;
|
|
155387
155497
|
};
|
|
155388
155498
|
function JsBot$sendGroupNudge$slambda_0(this$0, $groupUin, $targetUin, resultContinuation) {
|
|
@@ -155394,20 +155504,20 @@ function JsBot$sendGroupNudge$slambda_0(this$0, $groupUin, $targetUin, resultCon
|
|
|
155394
155504
|
return l;
|
|
155395
155505
|
}
|
|
155396
155506
|
function JsBot$getGroupNotifications$slambda(this$0, $startSequence, $isFiltered, $count, resultContinuation) {
|
|
155397
|
-
this.
|
|
155398
|
-
this.
|
|
155399
|
-
this.
|
|
155400
|
-
this.
|
|
155507
|
+
this.lfd_1 = this$0;
|
|
155508
|
+
this.mfd_1 = $startSequence;
|
|
155509
|
+
this.nfd_1 = $isFiltered;
|
|
155510
|
+
this.ofd_1 = $count;
|
|
155401
155511
|
CoroutineImpl.call(this, resultContinuation);
|
|
155402
155512
|
}
|
|
155403
|
-
protoOf(JsBot$getGroupNotifications$slambda).
|
|
155513
|
+
protoOf(JsBot$getGroupNotifications$slambda).qfd = function($this$promise, $completion) {
|
|
155404
155514
|
var tmp = this.q2u($this$promise, $completion);
|
|
155405
155515
|
tmp.h9_1 = Unit_instance;
|
|
155406
155516
|
tmp.i9_1 = null;
|
|
155407
155517
|
return tmp.n9();
|
|
155408
155518
|
};
|
|
155409
155519
|
protoOf(JsBot$getGroupNotifications$slambda).aa = function(p1, $completion) {
|
|
155410
|
-
return this.
|
|
155520
|
+
return this.qfd((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
155411
155521
|
};
|
|
155412
155522
|
protoOf(JsBot$getGroupNotifications$slambda).n9 = function() {
|
|
155413
155523
|
var suspendResult = this.h9_1;
|
|
@@ -155417,7 +155527,7 @@ protoOf(JsBot$getGroupNotifications$slambda).n9 = function() {
|
|
|
155417
155527
|
case 0:
|
|
155418
155528
|
this.g9_1 = 2;
|
|
155419
155529
|
this.f9_1 = 1;
|
|
155420
|
-
suspendResult = getGroupNotifications(this.
|
|
155530
|
+
suspendResult = getGroupNotifications(this.lfd_1.teh_1, this.mfd_1, this.nfd_1, this.ofd_1, this);
|
|
155421
155531
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155422
155532
|
continue $sm;
|
|
155423
155533
|
case 1:
|
|
@@ -155438,26 +155548,26 @@ protoOf(JsBot$getGroupNotifications$slambda).n9 = function() {
|
|
|
155438
155548
|
while (true);
|
|
155439
155549
|
};
|
|
155440
155550
|
protoOf(JsBot$getGroupNotifications$slambda).q2u = function($this$promise, completion) {
|
|
155441
|
-
var i$1 = new JsBot$getGroupNotifications$slambda(this.
|
|
155442
|
-
i$1.
|
|
155551
|
+
var i$1 = new JsBot$getGroupNotifications$slambda(this.lfd_1, this.mfd_1, this.nfd_1, this.ofd_1, completion);
|
|
155552
|
+
i$1.pfd_1 = $this$promise;
|
|
155443
155553
|
return i$1;
|
|
155444
155554
|
};
|
|
155445
155555
|
function JsBot$getGroupNotifications$slambda_0(this$0, $startSequence, $isFiltered, $count, resultContinuation) {
|
|
155446
155556
|
var i$1 = new JsBot$getGroupNotifications$slambda(this$0, $startSequence, $isFiltered, $count, resultContinuation);
|
|
155447
155557
|
var l = function($this$promise, $completion) {
|
|
155448
|
-
return i$1.
|
|
155558
|
+
return i$1.qfd($this$promise, $completion);
|
|
155449
155559
|
};
|
|
155450
155560
|
l.$arity = 1;
|
|
155451
155561
|
return l;
|
|
155452
155562
|
}
|
|
155453
155563
|
function JsBot$setGroupRequest$slambda(this$0, $groupUin, $sequence, $eventType, $accept, $isFiltered, $reason, resultContinuation) {
|
|
155454
|
-
this.
|
|
155455
|
-
this.
|
|
155456
|
-
this.
|
|
155457
|
-
this.
|
|
155458
|
-
this.
|
|
155459
|
-
this.
|
|
155460
|
-
this.
|
|
155564
|
+
this.zfd_1 = this$0;
|
|
155565
|
+
this.afe_1 = $groupUin;
|
|
155566
|
+
this.bfe_1 = $sequence;
|
|
155567
|
+
this.cfe_1 = $eventType;
|
|
155568
|
+
this.dfe_1 = $accept;
|
|
155569
|
+
this.efe_1 = $isFiltered;
|
|
155570
|
+
this.ffe_1 = $reason;
|
|
155461
155571
|
CoroutineImpl.call(this, resultContinuation);
|
|
155462
155572
|
}
|
|
155463
155573
|
protoOf(JsBot$setGroupRequest$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155477,7 +155587,7 @@ protoOf(JsBot$setGroupRequest$slambda).n9 = function() {
|
|
|
155477
155587
|
case 0:
|
|
155478
155588
|
this.g9_1 = 2;
|
|
155479
155589
|
this.f9_1 = 1;
|
|
155480
|
-
suspendResult = setGroupRequest(this.
|
|
155590
|
+
suspendResult = setGroupRequest(this.zfd_1.teh_1, this.afe_1, this.bfe_1, this.cfe_1, this.dfe_1, this.efe_1, this.ffe_1, this);
|
|
155481
155591
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155482
155592
|
continue $sm;
|
|
155483
155593
|
case 1: return Unit_instance;
|
|
@@ -155494,8 +155604,8 @@ protoOf(JsBot$setGroupRequest$slambda).n9 = function() {
|
|
|
155494
155604
|
while (true);
|
|
155495
155605
|
};
|
|
155496
155606
|
protoOf(JsBot$setGroupRequest$slambda).q2u = function($this$promise, completion) {
|
|
155497
|
-
var i$1 = new JsBot$setGroupRequest$slambda(this.
|
|
155498
|
-
i$1.
|
|
155607
|
+
var i$1 = new JsBot$setGroupRequest$slambda(this.zfd_1, this.afe_1, this.bfe_1, this.cfe_1, this.dfe_1, this.efe_1, this.ffe_1, completion);
|
|
155608
|
+
i$1.gfe_1 = $this$promise;
|
|
155499
155609
|
return i$1;
|
|
155500
155610
|
};
|
|
155501
155611
|
function JsBot$setGroupRequest$slambda_0(this$0, $groupUin, $sequence, $eventType, $accept, $isFiltered, $reason, resultContinuation) {
|
|
@@ -155507,10 +155617,10 @@ function JsBot$setGroupRequest$slambda_0(this$0, $groupUin, $sequence, $eventTyp
|
|
|
155507
155617
|
return l;
|
|
155508
155618
|
}
|
|
155509
155619
|
function JsBot$setGroupInvitation$slambda(this$0, $groupUin, $invitationSeq, $accept, resultContinuation) {
|
|
155510
|
-
this.
|
|
155511
|
-
this.
|
|
155512
|
-
this.
|
|
155513
|
-
this.
|
|
155620
|
+
this.pfe_1 = this$0;
|
|
155621
|
+
this.qfe_1 = $groupUin;
|
|
155622
|
+
this.rfe_1 = $invitationSeq;
|
|
155623
|
+
this.sfe_1 = $accept;
|
|
155514
155624
|
CoroutineImpl.call(this, resultContinuation);
|
|
155515
155625
|
}
|
|
155516
155626
|
protoOf(JsBot$setGroupInvitation$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155530,7 +155640,7 @@ protoOf(JsBot$setGroupInvitation$slambda).n9 = function() {
|
|
|
155530
155640
|
case 0:
|
|
155531
155641
|
this.g9_1 = 2;
|
|
155532
155642
|
this.f9_1 = 1;
|
|
155533
|
-
suspendResult = setGroupInvitation(this.
|
|
155643
|
+
suspendResult = setGroupInvitation(this.pfe_1.teh_1, this.qfe_1, this.rfe_1, this.sfe_1, this);
|
|
155534
155644
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155535
155645
|
continue $sm;
|
|
155536
155646
|
case 1: return Unit_instance;
|
|
@@ -155547,8 +155657,8 @@ protoOf(JsBot$setGroupInvitation$slambda).n9 = function() {
|
|
|
155547
155657
|
while (true);
|
|
155548
155658
|
};
|
|
155549
155659
|
protoOf(JsBot$setGroupInvitation$slambda).q2u = function($this$promise, completion) {
|
|
155550
|
-
var i$1 = new JsBot$setGroupInvitation$slambda(this.
|
|
155551
|
-
i$1.
|
|
155660
|
+
var i$1 = new JsBot$setGroupInvitation$slambda(this.pfe_1, this.qfe_1, this.rfe_1, this.sfe_1, completion);
|
|
155661
|
+
i$1.tfe_1 = $this$promise;
|
|
155552
155662
|
return i$1;
|
|
155553
155663
|
};
|
|
155554
155664
|
function JsBot$setGroupInvitation$slambda_0(this$0, $groupUin, $invitationSeq, $accept, resultContinuation) {
|
|
@@ -155560,11 +155670,11 @@ function JsBot$setGroupInvitation$slambda_0(this$0, $groupUin, $invitationSeq, $
|
|
|
155560
155670
|
return l;
|
|
155561
155671
|
}
|
|
155562
155672
|
function JsBot$uploadGroupFile$slambda(this$0, $groupUin, $fileName, $fileData, $parentFolderId, resultContinuation) {
|
|
155563
|
-
this.
|
|
155564
|
-
this.
|
|
155565
|
-
this.
|
|
155566
|
-
this.
|
|
155567
|
-
this.
|
|
155673
|
+
this.cff_1 = this$0;
|
|
155674
|
+
this.dff_1 = $groupUin;
|
|
155675
|
+
this.eff_1 = $fileName;
|
|
155676
|
+
this.fff_1 = $fileData;
|
|
155677
|
+
this.gff_1 = $parentFolderId;
|
|
155568
155678
|
CoroutineImpl.call(this, resultContinuation);
|
|
155569
155679
|
}
|
|
155570
155680
|
protoOf(JsBot$uploadGroupFile$slambda).ber = function($this$promise, $completion) {
|
|
@@ -155584,7 +155694,7 @@ protoOf(JsBot$uploadGroupFile$slambda).n9 = function() {
|
|
|
155584
155694
|
case 0:
|
|
155585
155695
|
this.g9_1 = 2;
|
|
155586
155696
|
this.f9_1 = 1;
|
|
155587
|
-
suspendResult = uploadGroupFile(this.
|
|
155697
|
+
suspendResult = uploadGroupFile(this.cff_1.teh_1, this.dff_1, this.eff_1, this.fff_1, this.gff_1, this);
|
|
155588
155698
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155589
155699
|
continue $sm;
|
|
155590
155700
|
case 1: return suspendResult;
|
|
@@ -155601,8 +155711,8 @@ protoOf(JsBot$uploadGroupFile$slambda).n9 = function() {
|
|
|
155601
155711
|
while (true);
|
|
155602
155712
|
};
|
|
155603
155713
|
protoOf(JsBot$uploadGroupFile$slambda).q2u = function($this$promise, completion) {
|
|
155604
|
-
var i$1 = new JsBot$uploadGroupFile$slambda(this.
|
|
155605
|
-
i$1.
|
|
155714
|
+
var i$1 = new JsBot$uploadGroupFile$slambda(this.cff_1, this.dff_1, this.eff_1, this.fff_1, this.gff_1, completion);
|
|
155715
|
+
i$1.hff_1 = $this$promise;
|
|
155606
155716
|
return i$1;
|
|
155607
155717
|
};
|
|
155608
155718
|
function JsBot$uploadGroupFile$slambda_0(this$0, $groupUin, $fileName, $fileData, $parentFolderId, resultContinuation) {
|
|
@@ -155614,10 +155724,10 @@ function JsBot$uploadGroupFile$slambda_0(this$0, $groupUin, $fileName, $fileData
|
|
|
155614
155724
|
return l;
|
|
155615
155725
|
}
|
|
155616
155726
|
function JsBot$uploadPrivateFile$slambda(this$0, $friendUin, $fileName, $fileData, resultContinuation) {
|
|
155617
|
-
this.
|
|
155618
|
-
this.
|
|
155619
|
-
this.
|
|
155620
|
-
this.
|
|
155727
|
+
this.qff_1 = this$0;
|
|
155728
|
+
this.rff_1 = $friendUin;
|
|
155729
|
+
this.sff_1 = $fileName;
|
|
155730
|
+
this.tff_1 = $fileData;
|
|
155621
155731
|
CoroutineImpl.call(this, resultContinuation);
|
|
155622
155732
|
}
|
|
155623
155733
|
protoOf(JsBot$uploadPrivateFile$slambda).ber = function($this$promise, $completion) {
|
|
@@ -155637,7 +155747,7 @@ protoOf(JsBot$uploadPrivateFile$slambda).n9 = function() {
|
|
|
155637
155747
|
case 0:
|
|
155638
155748
|
this.g9_1 = 2;
|
|
155639
155749
|
this.f9_1 = 1;
|
|
155640
|
-
suspendResult = uploadPrivateFile(this.
|
|
155750
|
+
suspendResult = uploadPrivateFile(this.qff_1.teh_1, this.rff_1, this.sff_1, this.tff_1, this);
|
|
155641
155751
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155642
155752
|
continue $sm;
|
|
155643
155753
|
case 1: return suspendResult;
|
|
@@ -155654,8 +155764,8 @@ protoOf(JsBot$uploadPrivateFile$slambda).n9 = function() {
|
|
|
155654
155764
|
while (true);
|
|
155655
155765
|
};
|
|
155656
155766
|
protoOf(JsBot$uploadPrivateFile$slambda).q2u = function($this$promise, completion) {
|
|
155657
|
-
var i$1 = new JsBot$uploadPrivateFile$slambda(this.
|
|
155658
|
-
i$1.
|
|
155767
|
+
var i$1 = new JsBot$uploadPrivateFile$slambda(this.qff_1, this.rff_1, this.sff_1, this.tff_1, completion);
|
|
155768
|
+
i$1.uff_1 = $this$promise;
|
|
155659
155769
|
return i$1;
|
|
155660
155770
|
};
|
|
155661
155771
|
function JsBot$uploadPrivateFile$slambda_0(this$0, $friendUin, $fileName, $fileData, resultContinuation) {
|
|
@@ -155667,10 +155777,10 @@ function JsBot$uploadPrivateFile$slambda_0(this$0, $friendUin, $fileName, $fileD
|
|
|
155667
155777
|
return l;
|
|
155668
155778
|
}
|
|
155669
155779
|
function JsBot$getPrivateFileDownloadUrl$slambda(this$0, $friendUin, $fileId, $fileHash, resultContinuation) {
|
|
155670
|
-
this.
|
|
155671
|
-
this.
|
|
155672
|
-
this.
|
|
155673
|
-
this.
|
|
155780
|
+
this.dfg_1 = this$0;
|
|
155781
|
+
this.efg_1 = $friendUin;
|
|
155782
|
+
this.ffg_1 = $fileId;
|
|
155783
|
+
this.gfg_1 = $fileHash;
|
|
155674
155784
|
CoroutineImpl.call(this, resultContinuation);
|
|
155675
155785
|
}
|
|
155676
155786
|
protoOf(JsBot$getPrivateFileDownloadUrl$slambda).ber = function($this$promise, $completion) {
|
|
@@ -155690,7 +155800,7 @@ protoOf(JsBot$getPrivateFileDownloadUrl$slambda).n9 = function() {
|
|
|
155690
155800
|
case 0:
|
|
155691
155801
|
this.g9_1 = 2;
|
|
155692
155802
|
this.f9_1 = 1;
|
|
155693
|
-
suspendResult = getPrivateFileDownloadUrl(this.
|
|
155803
|
+
suspendResult = getPrivateFileDownloadUrl(this.dfg_1.teh_1, this.efg_1, this.ffg_1, this.gfg_1, this);
|
|
155694
155804
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155695
155805
|
continue $sm;
|
|
155696
155806
|
case 1: return suspendResult;
|
|
@@ -155707,8 +155817,8 @@ protoOf(JsBot$getPrivateFileDownloadUrl$slambda).n9 = function() {
|
|
|
155707
155817
|
while (true);
|
|
155708
155818
|
};
|
|
155709
155819
|
protoOf(JsBot$getPrivateFileDownloadUrl$slambda).q2u = function($this$promise, completion) {
|
|
155710
|
-
var i$1 = new JsBot$getPrivateFileDownloadUrl$slambda(this.
|
|
155711
|
-
i$1.
|
|
155820
|
+
var i$1 = new JsBot$getPrivateFileDownloadUrl$slambda(this.dfg_1, this.efg_1, this.ffg_1, this.gfg_1, completion);
|
|
155821
|
+
i$1.hfg_1 = $this$promise;
|
|
155712
155822
|
return i$1;
|
|
155713
155823
|
};
|
|
155714
155824
|
function JsBot$getPrivateFileDownloadUrl$slambda_0(this$0, $friendUin, $fileId, $fileHash, resultContinuation) {
|
|
@@ -155720,9 +155830,9 @@ function JsBot$getPrivateFileDownloadUrl$slambda_0(this$0, $friendUin, $fileId,
|
|
|
155720
155830
|
return l;
|
|
155721
155831
|
}
|
|
155722
155832
|
function JsBot$getGroupFileDownloadUrl$slambda(this$0, $groupUin, $fileId, resultContinuation) {
|
|
155723
|
-
this.
|
|
155724
|
-
this.
|
|
155725
|
-
this.
|
|
155833
|
+
this.qfg_1 = this$0;
|
|
155834
|
+
this.rfg_1 = $groupUin;
|
|
155835
|
+
this.sfg_1 = $fileId;
|
|
155726
155836
|
CoroutineImpl.call(this, resultContinuation);
|
|
155727
155837
|
}
|
|
155728
155838
|
protoOf(JsBot$getGroupFileDownloadUrl$slambda).ber = function($this$promise, $completion) {
|
|
@@ -155742,7 +155852,7 @@ protoOf(JsBot$getGroupFileDownloadUrl$slambda).n9 = function() {
|
|
|
155742
155852
|
case 0:
|
|
155743
155853
|
this.g9_1 = 2;
|
|
155744
155854
|
this.f9_1 = 1;
|
|
155745
|
-
suspendResult = getGroupFileDownloadUrl(this.
|
|
155855
|
+
suspendResult = getGroupFileDownloadUrl(this.qfg_1.teh_1, this.rfg_1, this.sfg_1, this);
|
|
155746
155856
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155747
155857
|
continue $sm;
|
|
155748
155858
|
case 1: return suspendResult;
|
|
@@ -155759,8 +155869,8 @@ protoOf(JsBot$getGroupFileDownloadUrl$slambda).n9 = function() {
|
|
|
155759
155869
|
while (true);
|
|
155760
155870
|
};
|
|
155761
155871
|
protoOf(JsBot$getGroupFileDownloadUrl$slambda).q2u = function($this$promise, completion) {
|
|
155762
|
-
var i$1 = new JsBot$getGroupFileDownloadUrl$slambda(this.
|
|
155763
|
-
i$1.
|
|
155872
|
+
var i$1 = new JsBot$getGroupFileDownloadUrl$slambda(this.qfg_1, this.rfg_1, this.sfg_1, completion);
|
|
155873
|
+
i$1.tfg_1 = $this$promise;
|
|
155764
155874
|
return i$1;
|
|
155765
155875
|
};
|
|
155766
155876
|
function JsBot$getGroupFileDownloadUrl$slambda_0(this$0, $groupUin, $fileId, resultContinuation) {
|
|
@@ -155772,20 +155882,20 @@ function JsBot$getGroupFileDownloadUrl$slambda_0(this$0, $groupUin, $fileId, res
|
|
|
155772
155882
|
return l;
|
|
155773
155883
|
}
|
|
155774
155884
|
function JsBot$getGroupFileList$slambda(this$0, $groupUin, $targetDirectory, $startIndex, resultContinuation) {
|
|
155775
|
-
this.
|
|
155776
|
-
this.
|
|
155777
|
-
this.
|
|
155778
|
-
this.
|
|
155885
|
+
this.cfh_1 = this$0;
|
|
155886
|
+
this.dfh_1 = $groupUin;
|
|
155887
|
+
this.efh_1 = $targetDirectory;
|
|
155888
|
+
this.ffh_1 = $startIndex;
|
|
155779
155889
|
CoroutineImpl.call(this, resultContinuation);
|
|
155780
155890
|
}
|
|
155781
|
-
protoOf(JsBot$getGroupFileList$slambda).
|
|
155891
|
+
protoOf(JsBot$getGroupFileList$slambda).hfh = function($this$promise, $completion) {
|
|
155782
155892
|
var tmp = this.q2u($this$promise, $completion);
|
|
155783
155893
|
tmp.h9_1 = Unit_instance;
|
|
155784
155894
|
tmp.i9_1 = null;
|
|
155785
155895
|
return tmp.n9();
|
|
155786
155896
|
};
|
|
155787
155897
|
protoOf(JsBot$getGroupFileList$slambda).aa = function(p1, $completion) {
|
|
155788
|
-
return this.
|
|
155898
|
+
return this.hfh((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
155789
155899
|
};
|
|
155790
155900
|
protoOf(JsBot$getGroupFileList$slambda).n9 = function() {
|
|
155791
155901
|
var suspendResult = this.h9_1;
|
|
@@ -155795,7 +155905,7 @@ protoOf(JsBot$getGroupFileList$slambda).n9 = function() {
|
|
|
155795
155905
|
case 0:
|
|
155796
155906
|
this.g9_1 = 2;
|
|
155797
155907
|
this.f9_1 = 1;
|
|
155798
|
-
suspendResult = getGroupFileList(this.
|
|
155908
|
+
suspendResult = getGroupFileList(this.cfh_1.teh_1, this.dfh_1, this.efh_1, this.ffh_1, this);
|
|
155799
155909
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155800
155910
|
continue $sm;
|
|
155801
155911
|
case 1: return suspendResult;
|
|
@@ -155812,24 +155922,24 @@ protoOf(JsBot$getGroupFileList$slambda).n9 = function() {
|
|
|
155812
155922
|
while (true);
|
|
155813
155923
|
};
|
|
155814
155924
|
protoOf(JsBot$getGroupFileList$slambda).q2u = function($this$promise, completion) {
|
|
155815
|
-
var i$1 = new JsBot$getGroupFileList$slambda(this.
|
|
155816
|
-
i$1.
|
|
155925
|
+
var i$1 = new JsBot$getGroupFileList$slambda(this.cfh_1, this.dfh_1, this.efh_1, this.ffh_1, completion);
|
|
155926
|
+
i$1.gfh_1 = $this$promise;
|
|
155817
155927
|
return i$1;
|
|
155818
155928
|
};
|
|
155819
155929
|
function JsBot$getGroupFileList$slambda_0(this$0, $groupUin, $targetDirectory, $startIndex, resultContinuation) {
|
|
155820
155930
|
var i$1 = new JsBot$getGroupFileList$slambda(this$0, $groupUin, $targetDirectory, $startIndex, resultContinuation);
|
|
155821
155931
|
var l = function($this$promise, $completion) {
|
|
155822
|
-
return i$1.
|
|
155932
|
+
return i$1.hfh($this$promise, $completion);
|
|
155823
155933
|
};
|
|
155824
155934
|
l.$arity = 1;
|
|
155825
155935
|
return l;
|
|
155826
155936
|
}
|
|
155827
155937
|
function JsBot$renameGroupFile$slambda(this$0, $groupUin, $fileId, $parentFolderId, $newFileName, resultContinuation) {
|
|
155828
|
-
this.
|
|
155829
|
-
this.
|
|
155830
|
-
this.
|
|
155831
|
-
this.
|
|
155832
|
-
this.
|
|
155938
|
+
this.qfh_1 = this$0;
|
|
155939
|
+
this.rfh_1 = $groupUin;
|
|
155940
|
+
this.sfh_1 = $fileId;
|
|
155941
|
+
this.tfh_1 = $parentFolderId;
|
|
155942
|
+
this.ufh_1 = $newFileName;
|
|
155833
155943
|
CoroutineImpl.call(this, resultContinuation);
|
|
155834
155944
|
}
|
|
155835
155945
|
protoOf(JsBot$renameGroupFile$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155849,7 +155959,7 @@ protoOf(JsBot$renameGroupFile$slambda).n9 = function() {
|
|
|
155849
155959
|
case 0:
|
|
155850
155960
|
this.g9_1 = 2;
|
|
155851
155961
|
this.f9_1 = 1;
|
|
155852
|
-
suspendResult = renameGroupFile(this.
|
|
155962
|
+
suspendResult = renameGroupFile(this.qfh_1.teh_1, this.rfh_1, this.sfh_1, this.tfh_1, this.ufh_1, this);
|
|
155853
155963
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155854
155964
|
continue $sm;
|
|
155855
155965
|
case 1: return Unit_instance;
|
|
@@ -155866,8 +155976,8 @@ protoOf(JsBot$renameGroupFile$slambda).n9 = function() {
|
|
|
155866
155976
|
while (true);
|
|
155867
155977
|
};
|
|
155868
155978
|
protoOf(JsBot$renameGroupFile$slambda).q2u = function($this$promise, completion) {
|
|
155869
|
-
var i$1 = new JsBot$renameGroupFile$slambda(this.
|
|
155870
|
-
i$1.
|
|
155979
|
+
var i$1 = new JsBot$renameGroupFile$slambda(this.qfh_1, this.rfh_1, this.sfh_1, this.tfh_1, this.ufh_1, completion);
|
|
155980
|
+
i$1.vfh_1 = $this$promise;
|
|
155871
155981
|
return i$1;
|
|
155872
155982
|
};
|
|
155873
155983
|
function JsBot$renameGroupFile$slambda_0(this$0, $groupUin, $fileId, $parentFolderId, $newFileName, resultContinuation) {
|
|
@@ -155879,11 +155989,11 @@ function JsBot$renameGroupFile$slambda_0(this$0, $groupUin, $fileId, $parentFold
|
|
|
155879
155989
|
return l;
|
|
155880
155990
|
}
|
|
155881
155991
|
function JsBot$moveGroupFile$slambda(this$0, $groupUin, $fileId, $parentFolderId, $targetFolderId, resultContinuation) {
|
|
155882
|
-
this.
|
|
155883
|
-
this.
|
|
155884
|
-
this.
|
|
155885
|
-
this.
|
|
155886
|
-
this.
|
|
155992
|
+
this.efi_1 = this$0;
|
|
155993
|
+
this.ffi_1 = $groupUin;
|
|
155994
|
+
this.gfi_1 = $fileId;
|
|
155995
|
+
this.hfi_1 = $parentFolderId;
|
|
155996
|
+
this.ifi_1 = $targetFolderId;
|
|
155887
155997
|
CoroutineImpl.call(this, resultContinuation);
|
|
155888
155998
|
}
|
|
155889
155999
|
protoOf(JsBot$moveGroupFile$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155903,7 +156013,7 @@ protoOf(JsBot$moveGroupFile$slambda).n9 = function() {
|
|
|
155903
156013
|
case 0:
|
|
155904
156014
|
this.g9_1 = 2;
|
|
155905
156015
|
this.f9_1 = 1;
|
|
155906
|
-
suspendResult = moveGroupFile(this.
|
|
156016
|
+
suspendResult = moveGroupFile(this.efi_1.teh_1, this.ffi_1, this.gfi_1, this.hfi_1, this.ifi_1, this);
|
|
155907
156017
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155908
156018
|
continue $sm;
|
|
155909
156019
|
case 1: return Unit_instance;
|
|
@@ -155920,8 +156030,8 @@ protoOf(JsBot$moveGroupFile$slambda).n9 = function() {
|
|
|
155920
156030
|
while (true);
|
|
155921
156031
|
};
|
|
155922
156032
|
protoOf(JsBot$moveGroupFile$slambda).q2u = function($this$promise, completion) {
|
|
155923
|
-
var i$1 = new JsBot$moveGroupFile$slambda(this.
|
|
155924
|
-
i$1.
|
|
156033
|
+
var i$1 = new JsBot$moveGroupFile$slambda(this.efi_1, this.ffi_1, this.gfi_1, this.hfi_1, this.ifi_1, completion);
|
|
156034
|
+
i$1.jfi_1 = $this$promise;
|
|
155925
156035
|
return i$1;
|
|
155926
156036
|
};
|
|
155927
156037
|
function JsBot$moveGroupFile$slambda_0(this$0, $groupUin, $fileId, $parentFolderId, $targetFolderId, resultContinuation) {
|
|
@@ -155933,9 +156043,9 @@ function JsBot$moveGroupFile$slambda_0(this$0, $groupUin, $fileId, $parentFolder
|
|
|
155933
156043
|
return l;
|
|
155934
156044
|
}
|
|
155935
156045
|
function JsBot$deleteGroupFile$slambda(this$0, $groupUin, $fileId, resultContinuation) {
|
|
155936
|
-
this.
|
|
155937
|
-
this.
|
|
155938
|
-
this.
|
|
156046
|
+
this.sfi_1 = this$0;
|
|
156047
|
+
this.tfi_1 = $groupUin;
|
|
156048
|
+
this.ufi_1 = $fileId;
|
|
155939
156049
|
CoroutineImpl.call(this, resultContinuation);
|
|
155940
156050
|
}
|
|
155941
156051
|
protoOf(JsBot$deleteGroupFile$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -155955,7 +156065,7 @@ protoOf(JsBot$deleteGroupFile$slambda).n9 = function() {
|
|
|
155955
156065
|
case 0:
|
|
155956
156066
|
this.g9_1 = 2;
|
|
155957
156067
|
this.f9_1 = 1;
|
|
155958
|
-
suspendResult = deleteGroupFile(this.
|
|
156068
|
+
suspendResult = deleteGroupFile(this.sfi_1.teh_1, this.tfi_1, this.ufi_1, this);
|
|
155959
156069
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
155960
156070
|
continue $sm;
|
|
155961
156071
|
case 1: return Unit_instance;
|
|
@@ -155972,8 +156082,8 @@ protoOf(JsBot$deleteGroupFile$slambda).n9 = function() {
|
|
|
155972
156082
|
while (true);
|
|
155973
156083
|
};
|
|
155974
156084
|
protoOf(JsBot$deleteGroupFile$slambda).q2u = function($this$promise, completion) {
|
|
155975
|
-
var i$1 = new JsBot$deleteGroupFile$slambda(this.
|
|
155976
|
-
i$1.
|
|
156085
|
+
var i$1 = new JsBot$deleteGroupFile$slambda(this.sfi_1, this.tfi_1, this.ufi_1, completion);
|
|
156086
|
+
i$1.vfi_1 = $this$promise;
|
|
155977
156087
|
return i$1;
|
|
155978
156088
|
};
|
|
155979
156089
|
function JsBot$deleteGroupFile$slambda_0(this$0, $groupUin, $fileId, resultContinuation) {
|
|
@@ -155985,9 +156095,9 @@ function JsBot$deleteGroupFile$slambda_0(this$0, $groupUin, $fileId, resultConti
|
|
|
155985
156095
|
return l;
|
|
155986
156096
|
}
|
|
155987
156097
|
function JsBot$createGroupFolder$slambda(this$0, $groupUin, $folderName, resultContinuation) {
|
|
155988
|
-
this.
|
|
155989
|
-
this.
|
|
155990
|
-
this.
|
|
156098
|
+
this.efj_1 = this$0;
|
|
156099
|
+
this.ffj_1 = $groupUin;
|
|
156100
|
+
this.gfj_1 = $folderName;
|
|
155991
156101
|
CoroutineImpl.call(this, resultContinuation);
|
|
155992
156102
|
}
|
|
155993
156103
|
protoOf(JsBot$createGroupFolder$slambda).ber = function($this$promise, $completion) {
|
|
@@ -156007,7 +156117,7 @@ protoOf(JsBot$createGroupFolder$slambda).n9 = function() {
|
|
|
156007
156117
|
case 0:
|
|
156008
156118
|
this.g9_1 = 2;
|
|
156009
156119
|
this.f9_1 = 1;
|
|
156010
|
-
suspendResult = createGroupFolder(this.
|
|
156120
|
+
suspendResult = createGroupFolder(this.efj_1.teh_1, this.ffj_1, this.gfj_1, this);
|
|
156011
156121
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156012
156122
|
continue $sm;
|
|
156013
156123
|
case 1: return suspendResult;
|
|
@@ -156024,8 +156134,8 @@ protoOf(JsBot$createGroupFolder$slambda).n9 = function() {
|
|
|
156024
156134
|
while (true);
|
|
156025
156135
|
};
|
|
156026
156136
|
protoOf(JsBot$createGroupFolder$slambda).q2u = function($this$promise, completion) {
|
|
156027
|
-
var i$1 = new JsBot$createGroupFolder$slambda(this.
|
|
156028
|
-
i$1.
|
|
156137
|
+
var i$1 = new JsBot$createGroupFolder$slambda(this.efj_1, this.ffj_1, this.gfj_1, completion);
|
|
156138
|
+
i$1.hfj_1 = $this$promise;
|
|
156029
156139
|
return i$1;
|
|
156030
156140
|
};
|
|
156031
156141
|
function JsBot$createGroupFolder$slambda_0(this$0, $groupUin, $folderName, resultContinuation) {
|
|
@@ -156037,10 +156147,10 @@ function JsBot$createGroupFolder$slambda_0(this$0, $groupUin, $folderName, resul
|
|
|
156037
156147
|
return l;
|
|
156038
156148
|
}
|
|
156039
156149
|
function JsBot$renameGroupFolder$slambda(this$0, $groupUin, $folderId, $newFolderName, resultContinuation) {
|
|
156040
|
-
this.
|
|
156041
|
-
this.
|
|
156042
|
-
this.
|
|
156043
|
-
this.
|
|
156150
|
+
this.qfj_1 = this$0;
|
|
156151
|
+
this.rfj_1 = $groupUin;
|
|
156152
|
+
this.sfj_1 = $folderId;
|
|
156153
|
+
this.tfj_1 = $newFolderName;
|
|
156044
156154
|
CoroutineImpl.call(this, resultContinuation);
|
|
156045
156155
|
}
|
|
156046
156156
|
protoOf(JsBot$renameGroupFolder$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -156060,7 +156170,7 @@ protoOf(JsBot$renameGroupFolder$slambda).n9 = function() {
|
|
|
156060
156170
|
case 0:
|
|
156061
156171
|
this.g9_1 = 2;
|
|
156062
156172
|
this.f9_1 = 1;
|
|
156063
|
-
suspendResult = renameGroupFolder(this.
|
|
156173
|
+
suspendResult = renameGroupFolder(this.qfj_1.teh_1, this.rfj_1, this.sfj_1, this.tfj_1, this);
|
|
156064
156174
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156065
156175
|
continue $sm;
|
|
156066
156176
|
case 1: return Unit_instance;
|
|
@@ -156077,8 +156187,8 @@ protoOf(JsBot$renameGroupFolder$slambda).n9 = function() {
|
|
|
156077
156187
|
while (true);
|
|
156078
156188
|
};
|
|
156079
156189
|
protoOf(JsBot$renameGroupFolder$slambda).q2u = function($this$promise, completion) {
|
|
156080
|
-
var i$1 = new JsBot$renameGroupFolder$slambda(this.
|
|
156081
|
-
i$1.
|
|
156190
|
+
var i$1 = new JsBot$renameGroupFolder$slambda(this.qfj_1, this.rfj_1, this.sfj_1, this.tfj_1, completion);
|
|
156191
|
+
i$1.ufj_1 = $this$promise;
|
|
156082
156192
|
return i$1;
|
|
156083
156193
|
};
|
|
156084
156194
|
function JsBot$renameGroupFolder$slambda_0(this$0, $groupUin, $folderId, $newFolderName, resultContinuation) {
|
|
@@ -156090,9 +156200,9 @@ function JsBot$renameGroupFolder$slambda_0(this$0, $groupUin, $folderId, $newFol
|
|
|
156090
156200
|
return l;
|
|
156091
156201
|
}
|
|
156092
156202
|
function JsBot$deleteGroupFolder$slambda(this$0, $groupUin, $folderId, resultContinuation) {
|
|
156093
|
-
this.
|
|
156094
|
-
this.
|
|
156095
|
-
this.
|
|
156203
|
+
this.dfk_1 = this$0;
|
|
156204
|
+
this.efk_1 = $groupUin;
|
|
156205
|
+
this.ffk_1 = $folderId;
|
|
156096
156206
|
CoroutineImpl.call(this, resultContinuation);
|
|
156097
156207
|
}
|
|
156098
156208
|
protoOf(JsBot$deleteGroupFolder$slambda).p2u = function($this$promise, $completion) {
|
|
@@ -156112,7 +156222,7 @@ protoOf(JsBot$deleteGroupFolder$slambda).n9 = function() {
|
|
|
156112
156222
|
case 0:
|
|
156113
156223
|
this.g9_1 = 2;
|
|
156114
156224
|
this.f9_1 = 1;
|
|
156115
|
-
suspendResult = deleteGroupFolder(this.
|
|
156225
|
+
suspendResult = deleteGroupFolder(this.dfk_1.teh_1, this.efk_1, this.ffk_1, this);
|
|
156116
156226
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156117
156227
|
continue $sm;
|
|
156118
156228
|
case 1: return Unit_instance;
|
|
@@ -156129,8 +156239,8 @@ protoOf(JsBot$deleteGroupFolder$slambda).n9 = function() {
|
|
|
156129
156239
|
while (true);
|
|
156130
156240
|
};
|
|
156131
156241
|
protoOf(JsBot$deleteGroupFolder$slambda).q2u = function($this$promise, completion) {
|
|
156132
|
-
var i$1 = new JsBot$deleteGroupFolder$slambda(this.
|
|
156133
|
-
i$1.
|
|
156242
|
+
var i$1 = new JsBot$deleteGroupFolder$slambda(this.dfk_1, this.efk_1, this.ffk_1, completion);
|
|
156243
|
+
i$1.gfk_1 = $this$promise;
|
|
156134
156244
|
return i$1;
|
|
156135
156245
|
};
|
|
156136
156246
|
function JsBot$deleteGroupFolder$slambda_0(this$0, $groupUin, $folderId, resultContinuation) {
|
|
@@ -156142,8 +156252,8 @@ function JsBot$deleteGroupFolder$slambda_0(this$0, $groupUin, $folderId, resultC
|
|
|
156142
156252
|
return l;
|
|
156143
156253
|
}
|
|
156144
156254
|
function JsBot$onBotOffline$slambda($this, $callback, resultContinuation) {
|
|
156145
|
-
this.
|
|
156146
|
-
this.
|
|
156255
|
+
this.pfk_1 = $this;
|
|
156256
|
+
this.qfk_1 = $callback;
|
|
156147
156257
|
CoroutineImpl.call(this, resultContinuation);
|
|
156148
156258
|
}
|
|
156149
156259
|
protoOf(JsBot$onBotOffline$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156163,9 +156273,9 @@ protoOf(JsBot$onBotOffline$slambda).n9 = function() {
|
|
|
156163
156273
|
case 0:
|
|
156164
156274
|
this.g9_1 = 2;
|
|
156165
156275
|
this.f9_1 = 1;
|
|
156166
|
-
var tmp_0 = new JsBot$onBotOffline$$inlined$subscribeTracking$2$1(this.
|
|
156276
|
+
var tmp_0 = new JsBot$onBotOffline$$inlined$subscribeTracking$2$1(this.pfk_1.teh_1.w7w());
|
|
156167
156277
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156168
|
-
var tmp_2 = JsBot$onBotOffline$slambda$slambda_0(this.
|
|
156278
|
+
var tmp_2 = JsBot$onBotOffline$slambda$slambda_0(this.qfk_1, null);
|
|
156169
156279
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_0(tmp_2), this);
|
|
156170
156280
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156171
156281
|
continue $sm;
|
|
@@ -156183,8 +156293,8 @@ protoOf(JsBot$onBotOffline$slambda).n9 = function() {
|
|
|
156183
156293
|
while (true);
|
|
156184
156294
|
};
|
|
156185
156295
|
protoOf(JsBot$onBotOffline$slambda).q2u = function($this$launch, completion) {
|
|
156186
|
-
var i$1 = new JsBot$onBotOffline$slambda(this.
|
|
156187
|
-
i$1.
|
|
156296
|
+
var i$1 = new JsBot$onBotOffline$slambda(this.pfk_1, this.qfk_1, completion);
|
|
156297
|
+
i$1.rfk_1 = $this$launch;
|
|
156188
156298
|
return i$1;
|
|
156189
156299
|
};
|
|
156190
156300
|
function JsBot$onBotOffline$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156196,8 +156306,8 @@ function JsBot$onBotOffline$slambda_0($this, $callback, resultContinuation) {
|
|
|
156196
156306
|
return l;
|
|
156197
156307
|
}
|
|
156198
156308
|
function JsBot$onFriendFileUpload$slambda($this, $callback, resultContinuation) {
|
|
156199
|
-
this.
|
|
156200
|
-
this.
|
|
156309
|
+
this.afl_1 = $this;
|
|
156310
|
+
this.bfl_1 = $callback;
|
|
156201
156311
|
CoroutineImpl.call(this, resultContinuation);
|
|
156202
156312
|
}
|
|
156203
156313
|
protoOf(JsBot$onFriendFileUpload$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156217,9 +156327,9 @@ protoOf(JsBot$onFriendFileUpload$slambda).n9 = function() {
|
|
|
156217
156327
|
case 0:
|
|
156218
156328
|
this.g9_1 = 2;
|
|
156219
156329
|
this.f9_1 = 1;
|
|
156220
|
-
var tmp_0 = new JsBot$onFriendFileUpload$$inlined$subscribeTracking$2$1(this.
|
|
156330
|
+
var tmp_0 = new JsBot$onFriendFileUpload$$inlined$subscribeTracking$2$1(this.afl_1.teh_1.w7w());
|
|
156221
156331
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156222
|
-
var tmp_2 = JsBot$onFriendFileUpload$slambda$slambda_0(this.
|
|
156332
|
+
var tmp_2 = JsBot$onFriendFileUpload$slambda$slambda_0(this.bfl_1, null);
|
|
156223
156333
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_1(tmp_2), this);
|
|
156224
156334
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156225
156335
|
continue $sm;
|
|
@@ -156237,8 +156347,8 @@ protoOf(JsBot$onFriendFileUpload$slambda).n9 = function() {
|
|
|
156237
156347
|
while (true);
|
|
156238
156348
|
};
|
|
156239
156349
|
protoOf(JsBot$onFriendFileUpload$slambda).q2u = function($this$launch, completion) {
|
|
156240
|
-
var i$1 = new JsBot$onFriendFileUpload$slambda(this.
|
|
156241
|
-
i$1.
|
|
156350
|
+
var i$1 = new JsBot$onFriendFileUpload$slambda(this.afl_1, this.bfl_1, completion);
|
|
156351
|
+
i$1.cfl_1 = $this$launch;
|
|
156242
156352
|
return i$1;
|
|
156243
156353
|
};
|
|
156244
156354
|
function JsBot$onFriendFileUpload$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156250,8 +156360,8 @@ function JsBot$onFriendFileUpload$slambda_0($this, $callback, resultContinuation
|
|
|
156250
156360
|
return l;
|
|
156251
156361
|
}
|
|
156252
156362
|
function JsBot$onFriendNudge$slambda($this, $callback, resultContinuation) {
|
|
156253
|
-
this.
|
|
156254
|
-
this.
|
|
156363
|
+
this.lfl_1 = $this;
|
|
156364
|
+
this.mfl_1 = $callback;
|
|
156255
156365
|
CoroutineImpl.call(this, resultContinuation);
|
|
156256
156366
|
}
|
|
156257
156367
|
protoOf(JsBot$onFriendNudge$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156271,9 +156381,9 @@ protoOf(JsBot$onFriendNudge$slambda).n9 = function() {
|
|
|
156271
156381
|
case 0:
|
|
156272
156382
|
this.g9_1 = 2;
|
|
156273
156383
|
this.f9_1 = 1;
|
|
156274
|
-
var tmp_0 = new JsBot$onFriendNudge$$inlined$subscribeTracking$2$1(this.
|
|
156384
|
+
var tmp_0 = new JsBot$onFriendNudge$$inlined$subscribeTracking$2$1(this.lfl_1.teh_1.w7w());
|
|
156275
156385
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156276
|
-
var tmp_2 = JsBot$onFriendNudge$slambda$slambda_0(this.
|
|
156386
|
+
var tmp_2 = JsBot$onFriendNudge$slambda$slambda_0(this.mfl_1, null);
|
|
156277
156387
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_2(tmp_2), this);
|
|
156278
156388
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156279
156389
|
continue $sm;
|
|
@@ -156291,8 +156401,8 @@ protoOf(JsBot$onFriendNudge$slambda).n9 = function() {
|
|
|
156291
156401
|
while (true);
|
|
156292
156402
|
};
|
|
156293
156403
|
protoOf(JsBot$onFriendNudge$slambda).q2u = function($this$launch, completion) {
|
|
156294
|
-
var i$1 = new JsBot$onFriendNudge$slambda(this.
|
|
156295
|
-
i$1.
|
|
156404
|
+
var i$1 = new JsBot$onFriendNudge$slambda(this.lfl_1, this.mfl_1, completion);
|
|
156405
|
+
i$1.nfl_1 = $this$launch;
|
|
156296
156406
|
return i$1;
|
|
156297
156407
|
};
|
|
156298
156408
|
function JsBot$onFriendNudge$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156304,8 +156414,8 @@ function JsBot$onFriendNudge$slambda_0($this, $callback, resultContinuation) {
|
|
|
156304
156414
|
return l;
|
|
156305
156415
|
}
|
|
156306
156416
|
function JsBot$onFriendRequest$slambda($this, $callback, resultContinuation) {
|
|
156307
|
-
this.
|
|
156308
|
-
this.
|
|
156417
|
+
this.wfl_1 = $this;
|
|
156418
|
+
this.xfl_1 = $callback;
|
|
156309
156419
|
CoroutineImpl.call(this, resultContinuation);
|
|
156310
156420
|
}
|
|
156311
156421
|
protoOf(JsBot$onFriendRequest$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156325,9 +156435,9 @@ protoOf(JsBot$onFriendRequest$slambda).n9 = function() {
|
|
|
156325
156435
|
case 0:
|
|
156326
156436
|
this.g9_1 = 2;
|
|
156327
156437
|
this.f9_1 = 1;
|
|
156328
|
-
var tmp_0 = new JsBot$onFriendRequest$$inlined$subscribeTracking$2$1(this.
|
|
156438
|
+
var tmp_0 = new JsBot$onFriendRequest$$inlined$subscribeTracking$2$1(this.wfl_1.teh_1.w7w());
|
|
156329
156439
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156330
|
-
var tmp_2 = JsBot$onFriendRequest$slambda$slambda_0(this.
|
|
156440
|
+
var tmp_2 = JsBot$onFriendRequest$slambda$slambda_0(this.xfl_1, null);
|
|
156331
156441
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_3(tmp_2), this);
|
|
156332
156442
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156333
156443
|
continue $sm;
|
|
@@ -156345,8 +156455,8 @@ protoOf(JsBot$onFriendRequest$slambda).n9 = function() {
|
|
|
156345
156455
|
while (true);
|
|
156346
156456
|
};
|
|
156347
156457
|
protoOf(JsBot$onFriendRequest$slambda).q2u = function($this$launch, completion) {
|
|
156348
|
-
var i$1 = new JsBot$onFriendRequest$slambda(this.
|
|
156349
|
-
i$1.
|
|
156458
|
+
var i$1 = new JsBot$onFriendRequest$slambda(this.wfl_1, this.xfl_1, completion);
|
|
156459
|
+
i$1.yfl_1 = $this$launch;
|
|
156350
156460
|
return i$1;
|
|
156351
156461
|
};
|
|
156352
156462
|
function JsBot$onFriendRequest$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156358,8 +156468,8 @@ function JsBot$onFriendRequest$slambda_0($this, $callback, resultContinuation) {
|
|
|
156358
156468
|
return l;
|
|
156359
156469
|
}
|
|
156360
156470
|
function JsBot$onGroupAdminChange$slambda($this, $callback, resultContinuation) {
|
|
156361
|
-
this.
|
|
156362
|
-
this.
|
|
156471
|
+
this.hfm_1 = $this;
|
|
156472
|
+
this.ifm_1 = $callback;
|
|
156363
156473
|
CoroutineImpl.call(this, resultContinuation);
|
|
156364
156474
|
}
|
|
156365
156475
|
protoOf(JsBot$onGroupAdminChange$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156379,9 +156489,9 @@ protoOf(JsBot$onGroupAdminChange$slambda).n9 = function() {
|
|
|
156379
156489
|
case 0:
|
|
156380
156490
|
this.g9_1 = 2;
|
|
156381
156491
|
this.f9_1 = 1;
|
|
156382
|
-
var tmp_0 = new JsBot$onGroupAdminChange$$inlined$subscribeTracking$2$1(this.
|
|
156492
|
+
var tmp_0 = new JsBot$onGroupAdminChange$$inlined$subscribeTracking$2$1(this.hfm_1.teh_1.w7w());
|
|
156383
156493
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156384
|
-
var tmp_2 = JsBot$onGroupAdminChange$slambda$slambda_0(this.
|
|
156494
|
+
var tmp_2 = JsBot$onGroupAdminChange$slambda$slambda_0(this.ifm_1, null);
|
|
156385
156495
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_4(tmp_2), this);
|
|
156386
156496
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156387
156497
|
continue $sm;
|
|
@@ -156399,8 +156509,8 @@ protoOf(JsBot$onGroupAdminChange$slambda).n9 = function() {
|
|
|
156399
156509
|
while (true);
|
|
156400
156510
|
};
|
|
156401
156511
|
protoOf(JsBot$onGroupAdminChange$slambda).q2u = function($this$launch, completion) {
|
|
156402
|
-
var i$1 = new JsBot$onGroupAdminChange$slambda(this.
|
|
156403
|
-
i$1.
|
|
156512
|
+
var i$1 = new JsBot$onGroupAdminChange$slambda(this.hfm_1, this.ifm_1, completion);
|
|
156513
|
+
i$1.jfm_1 = $this$launch;
|
|
156404
156514
|
return i$1;
|
|
156405
156515
|
};
|
|
156406
156516
|
function JsBot$onGroupAdminChange$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156412,8 +156522,8 @@ function JsBot$onGroupAdminChange$slambda_0($this, $callback, resultContinuation
|
|
|
156412
156522
|
return l;
|
|
156413
156523
|
}
|
|
156414
156524
|
function JsBot$onGroupEssenceMessageChange$slambda($this, $callback, resultContinuation) {
|
|
156415
|
-
this.
|
|
156416
|
-
this.
|
|
156525
|
+
this.sfm_1 = $this;
|
|
156526
|
+
this.tfm_1 = $callback;
|
|
156417
156527
|
CoroutineImpl.call(this, resultContinuation);
|
|
156418
156528
|
}
|
|
156419
156529
|
protoOf(JsBot$onGroupEssenceMessageChange$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156433,9 +156543,9 @@ protoOf(JsBot$onGroupEssenceMessageChange$slambda).n9 = function() {
|
|
|
156433
156543
|
case 0:
|
|
156434
156544
|
this.g9_1 = 2;
|
|
156435
156545
|
this.f9_1 = 1;
|
|
156436
|
-
var tmp_0 = new JsBot$onGroupEssenceMessageChange$$inlined$subscribeTracking$2$1(this.
|
|
156546
|
+
var tmp_0 = new JsBot$onGroupEssenceMessageChange$$inlined$subscribeTracking$2$1(this.sfm_1.teh_1.w7w());
|
|
156437
156547
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156438
|
-
var tmp_2 = JsBot$onGroupEssenceMessageChange$slambda$slambda_0(this.
|
|
156548
|
+
var tmp_2 = JsBot$onGroupEssenceMessageChange$slambda$slambda_0(this.tfm_1, null);
|
|
156439
156549
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_5(tmp_2), this);
|
|
156440
156550
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156441
156551
|
continue $sm;
|
|
@@ -156453,8 +156563,8 @@ protoOf(JsBot$onGroupEssenceMessageChange$slambda).n9 = function() {
|
|
|
156453
156563
|
while (true);
|
|
156454
156564
|
};
|
|
156455
156565
|
protoOf(JsBot$onGroupEssenceMessageChange$slambda).q2u = function($this$launch, completion) {
|
|
156456
|
-
var i$1 = new JsBot$onGroupEssenceMessageChange$slambda(this.
|
|
156457
|
-
i$1.
|
|
156566
|
+
var i$1 = new JsBot$onGroupEssenceMessageChange$slambda(this.sfm_1, this.tfm_1, completion);
|
|
156567
|
+
i$1.ufm_1 = $this$launch;
|
|
156458
156568
|
return i$1;
|
|
156459
156569
|
};
|
|
156460
156570
|
function JsBot$onGroupEssenceMessageChange$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156466,8 +156576,8 @@ function JsBot$onGroupEssenceMessageChange$slambda_0($this, $callback, resultCon
|
|
|
156466
156576
|
return l;
|
|
156467
156577
|
}
|
|
156468
156578
|
function JsBot$onGroupFileUpload$slambda($this, $callback, resultContinuation) {
|
|
156469
|
-
this.
|
|
156470
|
-
this.
|
|
156579
|
+
this.dfn_1 = $this;
|
|
156580
|
+
this.efn_1 = $callback;
|
|
156471
156581
|
CoroutineImpl.call(this, resultContinuation);
|
|
156472
156582
|
}
|
|
156473
156583
|
protoOf(JsBot$onGroupFileUpload$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156487,9 +156597,9 @@ protoOf(JsBot$onGroupFileUpload$slambda).n9 = function() {
|
|
|
156487
156597
|
case 0:
|
|
156488
156598
|
this.g9_1 = 2;
|
|
156489
156599
|
this.f9_1 = 1;
|
|
156490
|
-
var tmp_0 = new JsBot$onGroupFileUpload$$inlined$subscribeTracking$2$1(this.
|
|
156600
|
+
var tmp_0 = new JsBot$onGroupFileUpload$$inlined$subscribeTracking$2$1(this.dfn_1.teh_1.w7w());
|
|
156491
156601
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156492
|
-
var tmp_2 = JsBot$onGroupFileUpload$slambda$slambda_0(this.
|
|
156602
|
+
var tmp_2 = JsBot$onGroupFileUpload$slambda$slambda_0(this.efn_1, null);
|
|
156493
156603
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_6(tmp_2), this);
|
|
156494
156604
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156495
156605
|
continue $sm;
|
|
@@ -156507,8 +156617,8 @@ protoOf(JsBot$onGroupFileUpload$slambda).n9 = function() {
|
|
|
156507
156617
|
while (true);
|
|
156508
156618
|
};
|
|
156509
156619
|
protoOf(JsBot$onGroupFileUpload$slambda).q2u = function($this$launch, completion) {
|
|
156510
|
-
var i$1 = new JsBot$onGroupFileUpload$slambda(this.
|
|
156511
|
-
i$1.
|
|
156620
|
+
var i$1 = new JsBot$onGroupFileUpload$slambda(this.dfn_1, this.efn_1, completion);
|
|
156621
|
+
i$1.ffn_1 = $this$launch;
|
|
156512
156622
|
return i$1;
|
|
156513
156623
|
};
|
|
156514
156624
|
function JsBot$onGroupFileUpload$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156520,8 +156630,8 @@ function JsBot$onGroupFileUpload$slambda_0($this, $callback, resultContinuation)
|
|
|
156520
156630
|
return l;
|
|
156521
156631
|
}
|
|
156522
156632
|
function JsBot$onGroupInvitation$slambda($this, $callback, resultContinuation) {
|
|
156523
|
-
this.
|
|
156524
|
-
this.
|
|
156633
|
+
this.ofn_1 = $this;
|
|
156634
|
+
this.pfn_1 = $callback;
|
|
156525
156635
|
CoroutineImpl.call(this, resultContinuation);
|
|
156526
156636
|
}
|
|
156527
156637
|
protoOf(JsBot$onGroupInvitation$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156541,9 +156651,9 @@ protoOf(JsBot$onGroupInvitation$slambda).n9 = function() {
|
|
|
156541
156651
|
case 0:
|
|
156542
156652
|
this.g9_1 = 2;
|
|
156543
156653
|
this.f9_1 = 1;
|
|
156544
|
-
var tmp_0 = new JsBot$onGroupInvitation$$inlined$subscribeTracking$2$1(this.
|
|
156654
|
+
var tmp_0 = new JsBot$onGroupInvitation$$inlined$subscribeTracking$2$1(this.ofn_1.teh_1.w7w());
|
|
156545
156655
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156546
|
-
var tmp_2 = JsBot$onGroupInvitation$slambda$slambda_0(this.
|
|
156656
|
+
var tmp_2 = JsBot$onGroupInvitation$slambda$slambda_0(this.pfn_1, null);
|
|
156547
156657
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_7(tmp_2), this);
|
|
156548
156658
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156549
156659
|
continue $sm;
|
|
@@ -156561,8 +156671,8 @@ protoOf(JsBot$onGroupInvitation$slambda).n9 = function() {
|
|
|
156561
156671
|
while (true);
|
|
156562
156672
|
};
|
|
156563
156673
|
protoOf(JsBot$onGroupInvitation$slambda).q2u = function($this$launch, completion) {
|
|
156564
|
-
var i$1 = new JsBot$onGroupInvitation$slambda(this.
|
|
156565
|
-
i$1.
|
|
156674
|
+
var i$1 = new JsBot$onGroupInvitation$slambda(this.ofn_1, this.pfn_1, completion);
|
|
156675
|
+
i$1.qfn_1 = $this$launch;
|
|
156566
156676
|
return i$1;
|
|
156567
156677
|
};
|
|
156568
156678
|
function JsBot$onGroupInvitation$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156574,8 +156684,8 @@ function JsBot$onGroupInvitation$slambda_0($this, $callback, resultContinuation)
|
|
|
156574
156684
|
return l;
|
|
156575
156685
|
}
|
|
156576
156686
|
function JsBot$onGroupInvitedJoinRequest$slambda($this, $callback, resultContinuation) {
|
|
156577
|
-
this.
|
|
156578
|
-
this.
|
|
156687
|
+
this.zfn_1 = $this;
|
|
156688
|
+
this.afo_1 = $callback;
|
|
156579
156689
|
CoroutineImpl.call(this, resultContinuation);
|
|
156580
156690
|
}
|
|
156581
156691
|
protoOf(JsBot$onGroupInvitedJoinRequest$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156595,9 +156705,9 @@ protoOf(JsBot$onGroupInvitedJoinRequest$slambda).n9 = function() {
|
|
|
156595
156705
|
case 0:
|
|
156596
156706
|
this.g9_1 = 2;
|
|
156597
156707
|
this.f9_1 = 1;
|
|
156598
|
-
var tmp_0 = new JsBot$onGroupInvitedJoinRequest$$inlined$subscribeTracking$2$1(this.
|
|
156708
|
+
var tmp_0 = new JsBot$onGroupInvitedJoinRequest$$inlined$subscribeTracking$2$1(this.zfn_1.teh_1.w7w());
|
|
156599
156709
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156600
|
-
var tmp_2 = JsBot$onGroupInvitedJoinRequest$slambda$slambda_0(this.
|
|
156710
|
+
var tmp_2 = JsBot$onGroupInvitedJoinRequest$slambda$slambda_0(this.afo_1, null);
|
|
156601
156711
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_8(tmp_2), this);
|
|
156602
156712
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156603
156713
|
continue $sm;
|
|
@@ -156615,8 +156725,8 @@ protoOf(JsBot$onGroupInvitedJoinRequest$slambda).n9 = function() {
|
|
|
156615
156725
|
while (true);
|
|
156616
156726
|
};
|
|
156617
156727
|
protoOf(JsBot$onGroupInvitedJoinRequest$slambda).q2u = function($this$launch, completion) {
|
|
156618
|
-
var i$1 = new JsBot$onGroupInvitedJoinRequest$slambda(this.
|
|
156619
|
-
i$1.
|
|
156728
|
+
var i$1 = new JsBot$onGroupInvitedJoinRequest$slambda(this.zfn_1, this.afo_1, completion);
|
|
156729
|
+
i$1.bfo_1 = $this$launch;
|
|
156620
156730
|
return i$1;
|
|
156621
156731
|
};
|
|
156622
156732
|
function JsBot$onGroupInvitedJoinRequest$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156628,8 +156738,8 @@ function JsBot$onGroupInvitedJoinRequest$slambda_0($this, $callback, resultConti
|
|
|
156628
156738
|
return l;
|
|
156629
156739
|
}
|
|
156630
156740
|
function JsBot$onGroupJoinRequest$slambda($this, $callback, resultContinuation) {
|
|
156631
|
-
this.
|
|
156632
|
-
this.
|
|
156741
|
+
this.kfo_1 = $this;
|
|
156742
|
+
this.lfo_1 = $callback;
|
|
156633
156743
|
CoroutineImpl.call(this, resultContinuation);
|
|
156634
156744
|
}
|
|
156635
156745
|
protoOf(JsBot$onGroupJoinRequest$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156649,9 +156759,9 @@ protoOf(JsBot$onGroupJoinRequest$slambda).n9 = function() {
|
|
|
156649
156759
|
case 0:
|
|
156650
156760
|
this.g9_1 = 2;
|
|
156651
156761
|
this.f9_1 = 1;
|
|
156652
|
-
var tmp_0 = new JsBot$onGroupJoinRequest$$inlined$subscribeTracking$2$1(this.
|
|
156762
|
+
var tmp_0 = new JsBot$onGroupJoinRequest$$inlined$subscribeTracking$2$1(this.kfo_1.teh_1.w7w());
|
|
156653
156763
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156654
|
-
var tmp_2 = JsBot$onGroupJoinRequest$slambda$slambda_0(this.
|
|
156764
|
+
var tmp_2 = JsBot$onGroupJoinRequest$slambda$slambda_0(this.lfo_1, null);
|
|
156655
156765
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_9(tmp_2), this);
|
|
156656
156766
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156657
156767
|
continue $sm;
|
|
@@ -156669,8 +156779,8 @@ protoOf(JsBot$onGroupJoinRequest$slambda).n9 = function() {
|
|
|
156669
156779
|
while (true);
|
|
156670
156780
|
};
|
|
156671
156781
|
protoOf(JsBot$onGroupJoinRequest$slambda).q2u = function($this$launch, completion) {
|
|
156672
|
-
var i$1 = new JsBot$onGroupJoinRequest$slambda(this.
|
|
156673
|
-
i$1.
|
|
156782
|
+
var i$1 = new JsBot$onGroupJoinRequest$slambda(this.kfo_1, this.lfo_1, completion);
|
|
156783
|
+
i$1.mfo_1 = $this$launch;
|
|
156674
156784
|
return i$1;
|
|
156675
156785
|
};
|
|
156676
156786
|
function JsBot$onGroupJoinRequest$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156682,8 +156792,8 @@ function JsBot$onGroupJoinRequest$slambda_0($this, $callback, resultContinuation
|
|
|
156682
156792
|
return l;
|
|
156683
156793
|
}
|
|
156684
156794
|
function JsBot$onGroupMemberDecrease$slambda($this, $callback, resultContinuation) {
|
|
156685
|
-
this.
|
|
156686
|
-
this.
|
|
156795
|
+
this.vfo_1 = $this;
|
|
156796
|
+
this.wfo_1 = $callback;
|
|
156687
156797
|
CoroutineImpl.call(this, resultContinuation);
|
|
156688
156798
|
}
|
|
156689
156799
|
protoOf(JsBot$onGroupMemberDecrease$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156703,9 +156813,9 @@ protoOf(JsBot$onGroupMemberDecrease$slambda).n9 = function() {
|
|
|
156703
156813
|
case 0:
|
|
156704
156814
|
this.g9_1 = 2;
|
|
156705
156815
|
this.f9_1 = 1;
|
|
156706
|
-
var tmp_0 = new JsBot$onGroupMemberDecrease$$inlined$subscribeTracking$2$1(this.
|
|
156816
|
+
var tmp_0 = new JsBot$onGroupMemberDecrease$$inlined$subscribeTracking$2$1(this.vfo_1.teh_1.w7w());
|
|
156707
156817
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156708
|
-
var tmp_2 = JsBot$onGroupMemberDecrease$slambda$slambda_0(this.
|
|
156818
|
+
var tmp_2 = JsBot$onGroupMemberDecrease$slambda$slambda_0(this.wfo_1, null);
|
|
156709
156819
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_10(tmp_2), this);
|
|
156710
156820
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156711
156821
|
continue $sm;
|
|
@@ -156723,8 +156833,8 @@ protoOf(JsBot$onGroupMemberDecrease$slambda).n9 = function() {
|
|
|
156723
156833
|
while (true);
|
|
156724
156834
|
};
|
|
156725
156835
|
protoOf(JsBot$onGroupMemberDecrease$slambda).q2u = function($this$launch, completion) {
|
|
156726
|
-
var i$1 = new JsBot$onGroupMemberDecrease$slambda(this.
|
|
156727
|
-
i$1.
|
|
156836
|
+
var i$1 = new JsBot$onGroupMemberDecrease$slambda(this.vfo_1, this.wfo_1, completion);
|
|
156837
|
+
i$1.xfo_1 = $this$launch;
|
|
156728
156838
|
return i$1;
|
|
156729
156839
|
};
|
|
156730
156840
|
function JsBot$onGroupMemberDecrease$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156736,8 +156846,8 @@ function JsBot$onGroupMemberDecrease$slambda_0($this, $callback, resultContinuat
|
|
|
156736
156846
|
return l;
|
|
156737
156847
|
}
|
|
156738
156848
|
function JsBot$onGroupMemberIncrease$slambda($this, $callback, resultContinuation) {
|
|
156739
|
-
this.
|
|
156740
|
-
this.
|
|
156849
|
+
this.gfp_1 = $this;
|
|
156850
|
+
this.hfp_1 = $callback;
|
|
156741
156851
|
CoroutineImpl.call(this, resultContinuation);
|
|
156742
156852
|
}
|
|
156743
156853
|
protoOf(JsBot$onGroupMemberIncrease$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156757,9 +156867,9 @@ protoOf(JsBot$onGroupMemberIncrease$slambda).n9 = function() {
|
|
|
156757
156867
|
case 0:
|
|
156758
156868
|
this.g9_1 = 2;
|
|
156759
156869
|
this.f9_1 = 1;
|
|
156760
|
-
var tmp_0 = new JsBot$onGroupMemberIncrease$$inlined$subscribeTracking$2$1(this.
|
|
156870
|
+
var tmp_0 = new JsBot$onGroupMemberIncrease$$inlined$subscribeTracking$2$1(this.gfp_1.teh_1.w7w());
|
|
156761
156871
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156762
|
-
var tmp_2 = JsBot$onGroupMemberIncrease$slambda$slambda_0(this.
|
|
156872
|
+
var tmp_2 = JsBot$onGroupMemberIncrease$slambda$slambda_0(this.hfp_1, null);
|
|
156763
156873
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_11(tmp_2), this);
|
|
156764
156874
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156765
156875
|
continue $sm;
|
|
@@ -156777,8 +156887,8 @@ protoOf(JsBot$onGroupMemberIncrease$slambda).n9 = function() {
|
|
|
156777
156887
|
while (true);
|
|
156778
156888
|
};
|
|
156779
156889
|
protoOf(JsBot$onGroupMemberIncrease$slambda).q2u = function($this$launch, completion) {
|
|
156780
|
-
var i$1 = new JsBot$onGroupMemberIncrease$slambda(this.
|
|
156781
|
-
i$1.
|
|
156890
|
+
var i$1 = new JsBot$onGroupMemberIncrease$slambda(this.gfp_1, this.hfp_1, completion);
|
|
156891
|
+
i$1.ifp_1 = $this$launch;
|
|
156782
156892
|
return i$1;
|
|
156783
156893
|
};
|
|
156784
156894
|
function JsBot$onGroupMemberIncrease$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156790,8 +156900,8 @@ function JsBot$onGroupMemberIncrease$slambda_0($this, $callback, resultContinuat
|
|
|
156790
156900
|
return l;
|
|
156791
156901
|
}
|
|
156792
156902
|
function JsBot$onGroupMessageReaction$slambda($this, $callback, resultContinuation) {
|
|
156793
|
-
this.
|
|
156794
|
-
this.
|
|
156903
|
+
this.rfp_1 = $this;
|
|
156904
|
+
this.sfp_1 = $callback;
|
|
156795
156905
|
CoroutineImpl.call(this, resultContinuation);
|
|
156796
156906
|
}
|
|
156797
156907
|
protoOf(JsBot$onGroupMessageReaction$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156811,9 +156921,9 @@ protoOf(JsBot$onGroupMessageReaction$slambda).n9 = function() {
|
|
|
156811
156921
|
case 0:
|
|
156812
156922
|
this.g9_1 = 2;
|
|
156813
156923
|
this.f9_1 = 1;
|
|
156814
|
-
var tmp_0 = new JsBot$onGroupMessageReaction$$inlined$subscribeTracking$2$1(this.
|
|
156924
|
+
var tmp_0 = new JsBot$onGroupMessageReaction$$inlined$subscribeTracking$2$1(this.rfp_1.teh_1.w7w());
|
|
156815
156925
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156816
|
-
var tmp_2 = JsBot$onGroupMessageReaction$slambda$slambda_0(this.
|
|
156926
|
+
var tmp_2 = JsBot$onGroupMessageReaction$slambda$slambda_0(this.sfp_1, null);
|
|
156817
156927
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_12(tmp_2), this);
|
|
156818
156928
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156819
156929
|
continue $sm;
|
|
@@ -156831,8 +156941,8 @@ protoOf(JsBot$onGroupMessageReaction$slambda).n9 = function() {
|
|
|
156831
156941
|
while (true);
|
|
156832
156942
|
};
|
|
156833
156943
|
protoOf(JsBot$onGroupMessageReaction$slambda).q2u = function($this$launch, completion) {
|
|
156834
|
-
var i$1 = new JsBot$onGroupMessageReaction$slambda(this.
|
|
156835
|
-
i$1.
|
|
156944
|
+
var i$1 = new JsBot$onGroupMessageReaction$slambda(this.rfp_1, this.sfp_1, completion);
|
|
156945
|
+
i$1.tfp_1 = $this$launch;
|
|
156836
156946
|
return i$1;
|
|
156837
156947
|
};
|
|
156838
156948
|
function JsBot$onGroupMessageReaction$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156844,8 +156954,8 @@ function JsBot$onGroupMessageReaction$slambda_0($this, $callback, resultContinua
|
|
|
156844
156954
|
return l;
|
|
156845
156955
|
}
|
|
156846
156956
|
function JsBot$onGroupMute$slambda($this, $callback, resultContinuation) {
|
|
156847
|
-
this.
|
|
156848
|
-
this.
|
|
156957
|
+
this.cfq_1 = $this;
|
|
156958
|
+
this.dfq_1 = $callback;
|
|
156849
156959
|
CoroutineImpl.call(this, resultContinuation);
|
|
156850
156960
|
}
|
|
156851
156961
|
protoOf(JsBot$onGroupMute$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156865,9 +156975,9 @@ protoOf(JsBot$onGroupMute$slambda).n9 = function() {
|
|
|
156865
156975
|
case 0:
|
|
156866
156976
|
this.g9_1 = 2;
|
|
156867
156977
|
this.f9_1 = 1;
|
|
156868
|
-
var tmp_0 = new JsBot$onGroupMute$$inlined$subscribeTracking$2$1(this.
|
|
156978
|
+
var tmp_0 = new JsBot$onGroupMute$$inlined$subscribeTracking$2$1(this.cfq_1.teh_1.w7w());
|
|
156869
156979
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156870
|
-
var tmp_2 = JsBot$onGroupMute$slambda$slambda_0(this.
|
|
156980
|
+
var tmp_2 = JsBot$onGroupMute$slambda$slambda_0(this.dfq_1, null);
|
|
156871
156981
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_13(tmp_2), this);
|
|
156872
156982
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156873
156983
|
continue $sm;
|
|
@@ -156885,8 +156995,8 @@ protoOf(JsBot$onGroupMute$slambda).n9 = function() {
|
|
|
156885
156995
|
while (true);
|
|
156886
156996
|
};
|
|
156887
156997
|
protoOf(JsBot$onGroupMute$slambda).q2u = function($this$launch, completion) {
|
|
156888
|
-
var i$1 = new JsBot$onGroupMute$slambda(this.
|
|
156889
|
-
i$1.
|
|
156998
|
+
var i$1 = new JsBot$onGroupMute$slambda(this.cfq_1, this.dfq_1, completion);
|
|
156999
|
+
i$1.efq_1 = $this$launch;
|
|
156890
157000
|
return i$1;
|
|
156891
157001
|
};
|
|
156892
157002
|
function JsBot$onGroupMute$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156898,8 +157008,8 @@ function JsBot$onGroupMute$slambda_0($this, $callback, resultContinuation) {
|
|
|
156898
157008
|
return l;
|
|
156899
157009
|
}
|
|
156900
157010
|
function JsBot$onGroupNameChange$slambda($this, $callback, resultContinuation) {
|
|
156901
|
-
this.
|
|
156902
|
-
this.
|
|
157011
|
+
this.nfq_1 = $this;
|
|
157012
|
+
this.ofq_1 = $callback;
|
|
156903
157013
|
CoroutineImpl.call(this, resultContinuation);
|
|
156904
157014
|
}
|
|
156905
157015
|
protoOf(JsBot$onGroupNameChange$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156919,9 +157029,9 @@ protoOf(JsBot$onGroupNameChange$slambda).n9 = function() {
|
|
|
156919
157029
|
case 0:
|
|
156920
157030
|
this.g9_1 = 2;
|
|
156921
157031
|
this.f9_1 = 1;
|
|
156922
|
-
var tmp_0 = new JsBot$onGroupNameChange$$inlined$subscribeTracking$2$1(this.
|
|
157032
|
+
var tmp_0 = new JsBot$onGroupNameChange$$inlined$subscribeTracking$2$1(this.nfq_1.teh_1.w7w());
|
|
156923
157033
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156924
|
-
var tmp_2 = JsBot$onGroupNameChange$slambda$slambda_0(this.
|
|
157034
|
+
var tmp_2 = JsBot$onGroupNameChange$slambda$slambda_0(this.ofq_1, null);
|
|
156925
157035
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_14(tmp_2), this);
|
|
156926
157036
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156927
157037
|
continue $sm;
|
|
@@ -156939,8 +157049,8 @@ protoOf(JsBot$onGroupNameChange$slambda).n9 = function() {
|
|
|
156939
157049
|
while (true);
|
|
156940
157050
|
};
|
|
156941
157051
|
protoOf(JsBot$onGroupNameChange$slambda).q2u = function($this$launch, completion) {
|
|
156942
|
-
var i$1 = new JsBot$onGroupNameChange$slambda(this.
|
|
156943
|
-
i$1.
|
|
157052
|
+
var i$1 = new JsBot$onGroupNameChange$slambda(this.nfq_1, this.ofq_1, completion);
|
|
157053
|
+
i$1.pfq_1 = $this$launch;
|
|
156944
157054
|
return i$1;
|
|
156945
157055
|
};
|
|
156946
157056
|
function JsBot$onGroupNameChange$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -156952,8 +157062,8 @@ function JsBot$onGroupNameChange$slambda_0($this, $callback, resultContinuation)
|
|
|
156952
157062
|
return l;
|
|
156953
157063
|
}
|
|
156954
157064
|
function JsBot$onGroupNudge$slambda($this, $callback, resultContinuation) {
|
|
156955
|
-
this.
|
|
156956
|
-
this.
|
|
157065
|
+
this.yfq_1 = $this;
|
|
157066
|
+
this.zfq_1 = $callback;
|
|
156957
157067
|
CoroutineImpl.call(this, resultContinuation);
|
|
156958
157068
|
}
|
|
156959
157069
|
protoOf(JsBot$onGroupNudge$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -156973,9 +157083,9 @@ protoOf(JsBot$onGroupNudge$slambda).n9 = function() {
|
|
|
156973
157083
|
case 0:
|
|
156974
157084
|
this.g9_1 = 2;
|
|
156975
157085
|
this.f9_1 = 1;
|
|
156976
|
-
var tmp_0 = new JsBot$onGroupNudge$$inlined$subscribeTracking$2$1(this.
|
|
157086
|
+
var tmp_0 = new JsBot$onGroupNudge$$inlined$subscribeTracking$2$1(this.yfq_1.teh_1.w7w());
|
|
156977
157087
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
156978
|
-
var tmp_2 = JsBot$onGroupNudge$slambda$slambda_0(this.
|
|
157088
|
+
var tmp_2 = JsBot$onGroupNudge$slambda$slambda_0(this.zfq_1, null);
|
|
156979
157089
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_15(tmp_2), this);
|
|
156980
157090
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
156981
157091
|
continue $sm;
|
|
@@ -156993,8 +157103,8 @@ protoOf(JsBot$onGroupNudge$slambda).n9 = function() {
|
|
|
156993
157103
|
while (true);
|
|
156994
157104
|
};
|
|
156995
157105
|
protoOf(JsBot$onGroupNudge$slambda).q2u = function($this$launch, completion) {
|
|
156996
|
-
var i$1 = new JsBot$onGroupNudge$slambda(this.
|
|
156997
|
-
i$1.
|
|
157106
|
+
var i$1 = new JsBot$onGroupNudge$slambda(this.yfq_1, this.zfq_1, completion);
|
|
157107
|
+
i$1.afr_1 = $this$launch;
|
|
156998
157108
|
return i$1;
|
|
156999
157109
|
};
|
|
157000
157110
|
function JsBot$onGroupNudge$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157006,8 +157116,8 @@ function JsBot$onGroupNudge$slambda_0($this, $callback, resultContinuation) {
|
|
|
157006
157116
|
return l;
|
|
157007
157117
|
}
|
|
157008
157118
|
function JsBot$onGroupWholeMute$slambda($this, $callback, resultContinuation) {
|
|
157009
|
-
this.
|
|
157010
|
-
this.
|
|
157119
|
+
this.jfr_1 = $this;
|
|
157120
|
+
this.kfr_1 = $callback;
|
|
157011
157121
|
CoroutineImpl.call(this, resultContinuation);
|
|
157012
157122
|
}
|
|
157013
157123
|
protoOf(JsBot$onGroupWholeMute$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157027,9 +157137,9 @@ protoOf(JsBot$onGroupWholeMute$slambda).n9 = function() {
|
|
|
157027
157137
|
case 0:
|
|
157028
157138
|
this.g9_1 = 2;
|
|
157029
157139
|
this.f9_1 = 1;
|
|
157030
|
-
var tmp_0 = new JsBot$onGroupWholeMute$$inlined$subscribeTracking$2$1(this.
|
|
157140
|
+
var tmp_0 = new JsBot$onGroupWholeMute$$inlined$subscribeTracking$2$1(this.jfr_1.teh_1.w7w());
|
|
157031
157141
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157032
|
-
var tmp_2 = JsBot$onGroupWholeMute$slambda$slambda_0(this.
|
|
157142
|
+
var tmp_2 = JsBot$onGroupWholeMute$slambda$slambda_0(this.kfr_1, null);
|
|
157033
157143
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_16(tmp_2), this);
|
|
157034
157144
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157035
157145
|
continue $sm;
|
|
@@ -157047,8 +157157,8 @@ protoOf(JsBot$onGroupWholeMute$slambda).n9 = function() {
|
|
|
157047
157157
|
while (true);
|
|
157048
157158
|
};
|
|
157049
157159
|
protoOf(JsBot$onGroupWholeMute$slambda).q2u = function($this$launch, completion) {
|
|
157050
|
-
var i$1 = new JsBot$onGroupWholeMute$slambda(this.
|
|
157051
|
-
i$1.
|
|
157160
|
+
var i$1 = new JsBot$onGroupWholeMute$slambda(this.jfr_1, this.kfr_1, completion);
|
|
157161
|
+
i$1.lfr_1 = $this$launch;
|
|
157052
157162
|
return i$1;
|
|
157053
157163
|
};
|
|
157054
157164
|
function JsBot$onGroupWholeMute$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157060,8 +157170,8 @@ function JsBot$onGroupWholeMute$slambda_0($this, $callback, resultContinuation)
|
|
|
157060
157170
|
return l;
|
|
157061
157171
|
}
|
|
157062
157172
|
function JsBot$onPinChanged$slambda($this, $callback, resultContinuation) {
|
|
157063
|
-
this.
|
|
157064
|
-
this.
|
|
157173
|
+
this.ufr_1 = $this;
|
|
157174
|
+
this.vfr_1 = $callback;
|
|
157065
157175
|
CoroutineImpl.call(this, resultContinuation);
|
|
157066
157176
|
}
|
|
157067
157177
|
protoOf(JsBot$onPinChanged$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157081,9 +157191,9 @@ protoOf(JsBot$onPinChanged$slambda).n9 = function() {
|
|
|
157081
157191
|
case 0:
|
|
157082
157192
|
this.g9_1 = 2;
|
|
157083
157193
|
this.f9_1 = 1;
|
|
157084
|
-
var tmp_0 = new JsBot$onPinChanged$$inlined$subscribeTracking$2$1(this.
|
|
157194
|
+
var tmp_0 = new JsBot$onPinChanged$$inlined$subscribeTracking$2$1(this.ufr_1.teh_1.w7w());
|
|
157085
157195
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157086
|
-
var tmp_2 = JsBot$onPinChanged$slambda$slambda_0(this.
|
|
157196
|
+
var tmp_2 = JsBot$onPinChanged$slambda$slambda_0(this.vfr_1, null);
|
|
157087
157197
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_17(tmp_2), this);
|
|
157088
157198
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157089
157199
|
continue $sm;
|
|
@@ -157101,8 +157211,8 @@ protoOf(JsBot$onPinChanged$slambda).n9 = function() {
|
|
|
157101
157211
|
while (true);
|
|
157102
157212
|
};
|
|
157103
157213
|
protoOf(JsBot$onPinChanged$slambda).q2u = function($this$launch, completion) {
|
|
157104
|
-
var i$1 = new JsBot$onPinChanged$slambda(this.
|
|
157105
|
-
i$1.
|
|
157214
|
+
var i$1 = new JsBot$onPinChanged$slambda(this.ufr_1, this.vfr_1, completion);
|
|
157215
|
+
i$1.wfr_1 = $this$launch;
|
|
157106
157216
|
return i$1;
|
|
157107
157217
|
};
|
|
157108
157218
|
function JsBot$onPinChanged$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157114,8 +157224,8 @@ function JsBot$onPinChanged$slambda_0($this, $callback, resultContinuation) {
|
|
|
157114
157224
|
return l;
|
|
157115
157225
|
}
|
|
157116
157226
|
function JsBot$onMessageReceive$slambda($this, $callback, resultContinuation) {
|
|
157117
|
-
this.
|
|
157118
|
-
this.
|
|
157227
|
+
this.ffs_1 = $this;
|
|
157228
|
+
this.gfs_1 = $callback;
|
|
157119
157229
|
CoroutineImpl.call(this, resultContinuation);
|
|
157120
157230
|
}
|
|
157121
157231
|
protoOf(JsBot$onMessageReceive$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157135,9 +157245,9 @@ protoOf(JsBot$onMessageReceive$slambda).n9 = function() {
|
|
|
157135
157245
|
case 0:
|
|
157136
157246
|
this.g9_1 = 2;
|
|
157137
157247
|
this.f9_1 = 1;
|
|
157138
|
-
var tmp_0 = new JsBot$onMessageReceive$$inlined$subscribeTracking$2$1(this.
|
|
157248
|
+
var tmp_0 = new JsBot$onMessageReceive$$inlined$subscribeTracking$2$1(this.ffs_1.teh_1.w7w());
|
|
157139
157249
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157140
|
-
var tmp_2 = JsBot$onMessageReceive$slambda$slambda_0(this.
|
|
157250
|
+
var tmp_2 = JsBot$onMessageReceive$slambda$slambda_0(this.gfs_1, null);
|
|
157141
157251
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_18(tmp_2), this);
|
|
157142
157252
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157143
157253
|
continue $sm;
|
|
@@ -157155,8 +157265,8 @@ protoOf(JsBot$onMessageReceive$slambda).n9 = function() {
|
|
|
157155
157265
|
while (true);
|
|
157156
157266
|
};
|
|
157157
157267
|
protoOf(JsBot$onMessageReceive$slambda).q2u = function($this$launch, completion) {
|
|
157158
|
-
var i$1 = new JsBot$onMessageReceive$slambda(this.
|
|
157159
|
-
i$1.
|
|
157268
|
+
var i$1 = new JsBot$onMessageReceive$slambda(this.ffs_1, this.gfs_1, completion);
|
|
157269
|
+
i$1.hfs_1 = $this$launch;
|
|
157160
157270
|
return i$1;
|
|
157161
157271
|
};
|
|
157162
157272
|
function JsBot$onMessageReceive$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157168,8 +157278,8 @@ function JsBot$onMessageReceive$slambda_0($this, $callback, resultContinuation)
|
|
|
157168
157278
|
return l;
|
|
157169
157279
|
}
|
|
157170
157280
|
function JsBot$onMessageRecall$slambda($this, $callback, resultContinuation) {
|
|
157171
|
-
this.
|
|
157172
|
-
this.
|
|
157281
|
+
this.qfs_1 = $this;
|
|
157282
|
+
this.rfs_1 = $callback;
|
|
157173
157283
|
CoroutineImpl.call(this, resultContinuation);
|
|
157174
157284
|
}
|
|
157175
157285
|
protoOf(JsBot$onMessageRecall$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157189,9 +157299,9 @@ protoOf(JsBot$onMessageRecall$slambda).n9 = function() {
|
|
|
157189
157299
|
case 0:
|
|
157190
157300
|
this.g9_1 = 2;
|
|
157191
157301
|
this.f9_1 = 1;
|
|
157192
|
-
var tmp_0 = new JsBot$onMessageRecall$$inlined$subscribeTracking$2$1(this.
|
|
157302
|
+
var tmp_0 = new JsBot$onMessageRecall$$inlined$subscribeTracking$2$1(this.qfs_1.teh_1.w7w());
|
|
157193
157303
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157194
|
-
var tmp_2 = JsBot$onMessageRecall$slambda$slambda_0(this.
|
|
157304
|
+
var tmp_2 = JsBot$onMessageRecall$slambda$slambda_0(this.rfs_1, null);
|
|
157195
157305
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_19(tmp_2), this);
|
|
157196
157306
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157197
157307
|
continue $sm;
|
|
@@ -157209,8 +157319,8 @@ protoOf(JsBot$onMessageRecall$slambda).n9 = function() {
|
|
|
157209
157319
|
while (true);
|
|
157210
157320
|
};
|
|
157211
157321
|
protoOf(JsBot$onMessageRecall$slambda).q2u = function($this$launch, completion) {
|
|
157212
|
-
var i$1 = new JsBot$onMessageRecall$slambda(this.
|
|
157213
|
-
i$1.
|
|
157322
|
+
var i$1 = new JsBot$onMessageRecall$slambda(this.qfs_1, this.rfs_1, completion);
|
|
157323
|
+
i$1.sfs_1 = $this$launch;
|
|
157214
157324
|
return i$1;
|
|
157215
157325
|
};
|
|
157216
157326
|
function JsBot$onMessageRecall$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157222,8 +157332,8 @@ function JsBot$onMessageRecall$slambda_0($this, $callback, resultContinuation) {
|
|
|
157222
157332
|
return l;
|
|
157223
157333
|
}
|
|
157224
157334
|
function JsBot$onQRCodeGenerated$slambda($this, $callback, resultContinuation) {
|
|
157225
|
-
this.
|
|
157226
|
-
this.
|
|
157335
|
+
this.bft_1 = $this;
|
|
157336
|
+
this.cft_1 = $callback;
|
|
157227
157337
|
CoroutineImpl.call(this, resultContinuation);
|
|
157228
157338
|
}
|
|
157229
157339
|
protoOf(JsBot$onQRCodeGenerated$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157243,9 +157353,9 @@ protoOf(JsBot$onQRCodeGenerated$slambda).n9 = function() {
|
|
|
157243
157353
|
case 0:
|
|
157244
157354
|
this.g9_1 = 2;
|
|
157245
157355
|
this.f9_1 = 1;
|
|
157246
|
-
var tmp_0 = new JsBot$onQRCodeGenerated$$inlined$subscribeTracking$2$1(this.
|
|
157356
|
+
var tmp_0 = new JsBot$onQRCodeGenerated$$inlined$subscribeTracking$2$1(this.bft_1.teh_1.w7w());
|
|
157247
157357
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157248
|
-
var tmp_2 = JsBot$onQRCodeGenerated$slambda$slambda_0(this.
|
|
157358
|
+
var tmp_2 = JsBot$onQRCodeGenerated$slambda$slambda_0(this.cft_1, null);
|
|
157249
157359
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_20(tmp_2), this);
|
|
157250
157360
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157251
157361
|
continue $sm;
|
|
@@ -157263,8 +157373,8 @@ protoOf(JsBot$onQRCodeGenerated$slambda).n9 = function() {
|
|
|
157263
157373
|
while (true);
|
|
157264
157374
|
};
|
|
157265
157375
|
protoOf(JsBot$onQRCodeGenerated$slambda).q2u = function($this$launch, completion) {
|
|
157266
|
-
var i$1 = new JsBot$onQRCodeGenerated$slambda(this.
|
|
157267
|
-
i$1.
|
|
157376
|
+
var i$1 = new JsBot$onQRCodeGenerated$slambda(this.bft_1, this.cft_1, completion);
|
|
157377
|
+
i$1.dft_1 = $this$launch;
|
|
157268
157378
|
return i$1;
|
|
157269
157379
|
};
|
|
157270
157380
|
function JsBot$onQRCodeGenerated$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157276,8 +157386,8 @@ function JsBot$onQRCodeGenerated$slambda_0($this, $callback, resultContinuation)
|
|
|
157276
157386
|
return l;
|
|
157277
157387
|
}
|
|
157278
157388
|
function JsBot$onQRCodeStateQuery$slambda($this, $callback, resultContinuation) {
|
|
157279
|
-
this.
|
|
157280
|
-
this.
|
|
157389
|
+
this.mft_1 = $this;
|
|
157390
|
+
this.nft_1 = $callback;
|
|
157281
157391
|
CoroutineImpl.call(this, resultContinuation);
|
|
157282
157392
|
}
|
|
157283
157393
|
protoOf(JsBot$onQRCodeStateQuery$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157297,9 +157407,9 @@ protoOf(JsBot$onQRCodeStateQuery$slambda).n9 = function() {
|
|
|
157297
157407
|
case 0:
|
|
157298
157408
|
this.g9_1 = 2;
|
|
157299
157409
|
this.f9_1 = 1;
|
|
157300
|
-
var tmp_0 = new JsBot$onQRCodeStateQuery$$inlined$subscribeTracking$2$1(this.
|
|
157410
|
+
var tmp_0 = new JsBot$onQRCodeStateQuery$$inlined$subscribeTracking$2$1(this.mft_1.teh_1.w7w());
|
|
157301
157411
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157302
|
-
var tmp_2 = JsBot$onQRCodeStateQuery$slambda$slambda_0(this.
|
|
157412
|
+
var tmp_2 = JsBot$onQRCodeStateQuery$slambda$slambda_0(this.nft_1, null);
|
|
157303
157413
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_21(tmp_2), this);
|
|
157304
157414
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157305
157415
|
continue $sm;
|
|
@@ -157317,8 +157427,8 @@ protoOf(JsBot$onQRCodeStateQuery$slambda).n9 = function() {
|
|
|
157317
157427
|
while (true);
|
|
157318
157428
|
};
|
|
157319
157429
|
protoOf(JsBot$onQRCodeStateQuery$slambda).q2u = function($this$launch, completion) {
|
|
157320
|
-
var i$1 = new JsBot$onQRCodeStateQuery$slambda(this.
|
|
157321
|
-
i$1.
|
|
157430
|
+
var i$1 = new JsBot$onQRCodeStateQuery$slambda(this.mft_1, this.nft_1, completion);
|
|
157431
|
+
i$1.oft_1 = $this$launch;
|
|
157322
157432
|
return i$1;
|
|
157323
157433
|
};
|
|
157324
157434
|
function JsBot$onQRCodeStateQuery$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157330,8 +157440,8 @@ function JsBot$onQRCodeStateQuery$slambda_0($this, $callback, resultContinuation
|
|
|
157330
157440
|
return l;
|
|
157331
157441
|
}
|
|
157332
157442
|
function JsBot$onSessionStoreUpdated$slambda($this, $callback, resultContinuation) {
|
|
157333
|
-
this.
|
|
157334
|
-
this.
|
|
157443
|
+
this.xft_1 = $this;
|
|
157444
|
+
this.yft_1 = $callback;
|
|
157335
157445
|
CoroutineImpl.call(this, resultContinuation);
|
|
157336
157446
|
}
|
|
157337
157447
|
protoOf(JsBot$onSessionStoreUpdated$slambda).p2u = function($this$launch, $completion) {
|
|
@@ -157351,9 +157461,9 @@ protoOf(JsBot$onSessionStoreUpdated$slambda).n9 = function() {
|
|
|
157351
157461
|
case 0:
|
|
157352
157462
|
this.g9_1 = 2;
|
|
157353
157463
|
this.f9_1 = 1;
|
|
157354
|
-
var tmp_0 = new JsBot$onSessionStoreUpdated$$inlined$subscribeTracking$2$1(this.
|
|
157464
|
+
var tmp_0 = new JsBot$onSessionStoreUpdated$$inlined$subscribeTracking$2$1(this.xft_1.teh_1.w7w());
|
|
157355
157465
|
var tmp_1 = isInterface(tmp_0, Flow) ? tmp_0 : THROW_CCE();
|
|
157356
|
-
var tmp_2 = JsBot$onSessionStoreUpdated$slambda$slambda_0(this.
|
|
157466
|
+
var tmp_2 = JsBot$onSessionStoreUpdated$slambda$slambda_0(this.yft_1, null);
|
|
157357
157467
|
suspendResult = tmp_1.g2c(new sam$kotlinx_coroutines_flow_FlowCollector$0_22(tmp_2), this);
|
|
157358
157468
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
157359
157469
|
continue $sm;
|
|
@@ -157371,8 +157481,8 @@ protoOf(JsBot$onSessionStoreUpdated$slambda).n9 = function() {
|
|
|
157371
157481
|
while (true);
|
|
157372
157482
|
};
|
|
157373
157483
|
protoOf(JsBot$onSessionStoreUpdated$slambda).q2u = function($this$launch, completion) {
|
|
157374
|
-
var i$1 = new JsBot$onSessionStoreUpdated$slambda(this.
|
|
157375
|
-
i$1.
|
|
157484
|
+
var i$1 = new JsBot$onSessionStoreUpdated$slambda(this.xft_1, this.yft_1, completion);
|
|
157485
|
+
i$1.zft_1 = $this$launch;
|
|
157376
157486
|
return i$1;
|
|
157377
157487
|
};
|
|
157378
157488
|
function JsBot$onSessionStoreUpdated$slambda_0($this, $callback, resultContinuation) {
|
|
@@ -157394,41 +157504,41 @@ protoOf(Bot_0).x7w = function() {
|
|
|
157394
157504
|
protoOf(Bot_0).b7x = function() {
|
|
157395
157505
|
return this.teh_1.b7x();
|
|
157396
157506
|
};
|
|
157397
|
-
protoOf(Bot_0).
|
|
157507
|
+
protoOf(Bot_0).afu = function() {
|
|
157398
157508
|
return this.teh_1.j7t_1;
|
|
157399
157509
|
};
|
|
157400
|
-
protoOf(Bot_0).
|
|
157510
|
+
protoOf(Bot_0).bfu = function(cmd, payload, timeoutMillis) {
|
|
157401
157511
|
return promise(this, VOID, VOID, JsBot$unsafeSendPacket$slambda_0(this, cmd, payload, timeoutMillis, null));
|
|
157402
157512
|
};
|
|
157403
157513
|
protoOf(Bot_0).unsafeSendPacket = function(cmd, payload, timeoutMillis, $super) {
|
|
157404
157514
|
timeoutMillis = timeoutMillis === VOID ? 10000n : timeoutMillis;
|
|
157405
|
-
return $super === VOID ? this.
|
|
157515
|
+
return $super === VOID ? this.bfu(cmd, payload, timeoutMillis) : $super.bfu.call(this, cmd, payload, timeoutMillis);
|
|
157406
157516
|
};
|
|
157407
|
-
protoOf(Bot_0).
|
|
157517
|
+
protoOf(Bot_0).cfu = function(queryInterval, preloadContacts) {
|
|
157408
157518
|
return promise(this, VOID, VOID, JsBot$qrCodeLogin$slambda_0(this, queryInterval, preloadContacts, null));
|
|
157409
157519
|
};
|
|
157410
157520
|
protoOf(Bot_0).qrCodeLogin = function(queryInterval, preloadContacts, $super) {
|
|
157411
157521
|
queryInterval = queryInterval === VOID ? 3000n : queryInterval;
|
|
157412
157522
|
preloadContacts = preloadContacts === VOID ? false : preloadContacts;
|
|
157413
|
-
return $super === VOID ? this.
|
|
157523
|
+
return $super === VOID ? this.cfu(queryInterval, preloadContacts) : $super.cfu.call(this, queryInterval, preloadContacts);
|
|
157414
157524
|
};
|
|
157415
|
-
protoOf(Bot_0).
|
|
157525
|
+
protoOf(Bot_0).dfu = function(preloadContacts) {
|
|
157416
157526
|
return promise(this, VOID, VOID, JsBot$online$slambda_0(this, preloadContacts, null));
|
|
157417
157527
|
};
|
|
157418
157528
|
protoOf(Bot_0).online = function(preloadContacts, $super) {
|
|
157419
157529
|
preloadContacts = preloadContacts === VOID ? false : preloadContacts;
|
|
157420
|
-
return $super === VOID ? this.
|
|
157530
|
+
return $super === VOID ? this.dfu(preloadContacts) : $super.dfu.call(this, preloadContacts);
|
|
157421
157531
|
};
|
|
157422
157532
|
protoOf(Bot_0).offline = function() {
|
|
157423
157533
|
return promise(this, VOID, VOID, JsBot$offline$slambda_0(this, null));
|
|
157424
157534
|
};
|
|
157425
|
-
protoOf(Bot_0).
|
|
157535
|
+
protoOf(Bot_0).efu = function(queryInterval, preloadContacts) {
|
|
157426
157536
|
return promise(this, VOID, VOID, JsBot$login$slambda_0(this, queryInterval, preloadContacts, null));
|
|
157427
157537
|
};
|
|
157428
157538
|
protoOf(Bot_0).login = function(queryInterval, preloadContacts, $super) {
|
|
157429
157539
|
queryInterval = queryInterval === VOID ? 3000n : queryInterval;
|
|
157430
157540
|
preloadContacts = preloadContacts === VOID ? false : preloadContacts;
|
|
157431
|
-
return $super === VOID ? this.
|
|
157541
|
+
return $super === VOID ? this.efu(queryInterval, preloadContacts) : $super.efu.call(this, queryInterval, preloadContacts);
|
|
157432
157542
|
};
|
|
157433
157543
|
protoOf(Bot_0).fetchUserInfoByUin = function(uin) {
|
|
157434
157544
|
return promise(this, VOID, VOID, JsBot$fetchUserInfoByUin$slambda_0(this, uin, null));
|
|
@@ -157445,57 +157555,57 @@ protoOf(Bot_0).fetchGroups = function() {
|
|
|
157445
157555
|
protoOf(Bot_0).fetchGroupMembers = function(groupUin) {
|
|
157446
157556
|
return promise(this, VOID, VOID, JsBot$fetchGroupMembers$slambda_0(this, groupUin, null));
|
|
157447
157557
|
};
|
|
157448
|
-
protoOf(Bot_0).
|
|
157558
|
+
protoOf(Bot_0).ffu = function(forceUpdate) {
|
|
157449
157559
|
return promise(this, VOID, VOID, JsBot$getFriends$slambda_0(this, forceUpdate, null));
|
|
157450
157560
|
};
|
|
157451
157561
|
protoOf(Bot_0).getFriends = function(forceUpdate, $super) {
|
|
157452
157562
|
forceUpdate = forceUpdate === VOID ? false : forceUpdate;
|
|
157453
|
-
return $super === VOID ? this.
|
|
157563
|
+
return $super === VOID ? this.ffu(forceUpdate) : $super.ffu.call(this, forceUpdate);
|
|
157454
157564
|
};
|
|
157455
|
-
protoOf(Bot_0).
|
|
157565
|
+
protoOf(Bot_0).gfu = function(uin, forceUpdate) {
|
|
157456
157566
|
return promise(this, VOID, VOID, JsBot$getFriend$slambda_0(this, uin, forceUpdate, null));
|
|
157457
157567
|
};
|
|
157458
157568
|
protoOf(Bot_0).getFriend = function(uin, forceUpdate, $super) {
|
|
157459
157569
|
forceUpdate = forceUpdate === VOID ? false : forceUpdate;
|
|
157460
|
-
return $super === VOID ? this.
|
|
157570
|
+
return $super === VOID ? this.gfu(uin, forceUpdate) : $super.gfu.call(this, uin, forceUpdate);
|
|
157461
157571
|
};
|
|
157462
|
-
protoOf(Bot_0).
|
|
157572
|
+
protoOf(Bot_0).hfu = function(forceUpdate) {
|
|
157463
157573
|
return promise(this, VOID, VOID, JsBot$getGroups$slambda_0(this, forceUpdate, null));
|
|
157464
157574
|
};
|
|
157465
157575
|
protoOf(Bot_0).getGroups = function(forceUpdate, $super) {
|
|
157466
157576
|
forceUpdate = forceUpdate === VOID ? false : forceUpdate;
|
|
157467
|
-
return $super === VOID ? this.
|
|
157577
|
+
return $super === VOID ? this.hfu(forceUpdate) : $super.hfu.call(this, forceUpdate);
|
|
157468
157578
|
};
|
|
157469
|
-
protoOf(Bot_0).
|
|
157579
|
+
protoOf(Bot_0).ifu = function(uin, forceUpdate) {
|
|
157470
157580
|
return promise(this, VOID, VOID, JsBot$getGroup$slambda_0(this, uin, forceUpdate, null));
|
|
157471
157581
|
};
|
|
157472
157582
|
protoOf(Bot_0).getGroup = function(uin, forceUpdate, $super) {
|
|
157473
157583
|
forceUpdate = forceUpdate === VOID ? false : forceUpdate;
|
|
157474
|
-
return $super === VOID ? this.
|
|
157584
|
+
return $super === VOID ? this.ifu(uin, forceUpdate) : $super.ifu.call(this, uin, forceUpdate);
|
|
157475
157585
|
};
|
|
157476
|
-
protoOf(Bot_0).
|
|
157586
|
+
protoOf(Bot_0).jfu = function(groupUin, forceUpdate) {
|
|
157477
157587
|
return promise(this, VOID, VOID, JsBot$getGroupMembers$slambda_0(this, groupUin, forceUpdate, null));
|
|
157478
157588
|
};
|
|
157479
157589
|
protoOf(Bot_0).getGroupMembers = function(groupUin, forceUpdate, $super) {
|
|
157480
157590
|
forceUpdate = forceUpdate === VOID ? false : forceUpdate;
|
|
157481
|
-
return $super === VOID ? this.
|
|
157591
|
+
return $super === VOID ? this.jfu(groupUin, forceUpdate) : $super.jfu.call(this, groupUin, forceUpdate);
|
|
157482
157592
|
};
|
|
157483
|
-
protoOf(Bot_0).
|
|
157593
|
+
protoOf(Bot_0).kfu = function(groupUin, memberUin, forceUpdate) {
|
|
157484
157594
|
return promise(this, VOID, VOID, JsBot$getGroupMember$slambda_0(this, groupUin, memberUin, forceUpdate, null));
|
|
157485
157595
|
};
|
|
157486
157596
|
protoOf(Bot_0).getGroupMember = function(groupUin, memberUin, forceUpdate, $super) {
|
|
157487
157597
|
forceUpdate = forceUpdate === VOID ? false : forceUpdate;
|
|
157488
|
-
return $super === VOID ? this.
|
|
157598
|
+
return $super === VOID ? this.kfu(groupUin, memberUin, forceUpdate) : $super.kfu.call(this, groupUin, memberUin, forceUpdate);
|
|
157489
157599
|
};
|
|
157490
157600
|
protoOf(Bot_0).getUinByUid = function(uid) {
|
|
157491
157601
|
return promise(this, VOID, VOID, JsBot$getUinByUid$slambda_0(this, uid, null));
|
|
157492
157602
|
};
|
|
157493
|
-
protoOf(Bot_0).
|
|
157603
|
+
protoOf(Bot_0).lfu = function(uin, mayComeFromGroupUin) {
|
|
157494
157604
|
return promise(this, VOID, VOID, JsBot$getUidByUin$slambda_0(this, uin, mayComeFromGroupUin, null));
|
|
157495
157605
|
};
|
|
157496
157606
|
protoOf(Bot_0).getUidByUin = function(uin, mayComeFromGroupUin, $super) {
|
|
157497
157607
|
mayComeFromGroupUin = mayComeFromGroupUin === VOID ? null : mayComeFromGroupUin;
|
|
157498
|
-
return $super === VOID ? this.
|
|
157608
|
+
return $super === VOID ? this.lfu(uin, mayComeFromGroupUin) : $super.lfu.call(this, uin, mayComeFromGroupUin);
|
|
157499
157609
|
};
|
|
157500
157610
|
protoOf(Bot_0).getCustomFaceUrl = function() {
|
|
157501
157611
|
return promise(this, VOID, VOID, JsBot$getCustomFaceUrl$slambda_0(this, null));
|
|
@@ -157536,31 +157646,37 @@ protoOf(Bot_0).sendFriendMessage = function(friendUin, build$2) {
|
|
|
157536
157646
|
protoOf(Bot_0).sendFriendMessageRich = function(friendUin, clientSequence, random$1, build$2) {
|
|
157537
157647
|
return promise(this, VOID, VOID, JsBot$sendFriendMessageRich$slambda_0(this, friendUin, clientSequence, random$1, build$2, null));
|
|
157538
157648
|
};
|
|
157649
|
+
protoOf(Bot_0).sendFriendMessageBySegments = function(friendUin, clientSequence, random$1, segments) {
|
|
157650
|
+
return promise(this, VOID, VOID, JsBot$sendFriendMessageBySegments$slambda_0(this, friendUin, clientSequence, random$1, segments, null));
|
|
157651
|
+
};
|
|
157539
157652
|
protoOf(Bot_0).sendGroupMessage = function(groupUin, build$2) {
|
|
157540
157653
|
return promise(this, VOID, VOID, JsBot$sendGroupMessage$slambda_0(this, groupUin, build$2, null));
|
|
157541
157654
|
};
|
|
157542
157655
|
protoOf(Bot_0).sendGroupMessageRich = function(groupUin, clientSequence, random$1, build$2) {
|
|
157543
157656
|
return promise(this, VOID, VOID, JsBot$sendGroupMessageRich$slambda_0(this, groupUin, clientSequence, random$1, build$2, null));
|
|
157544
157657
|
};
|
|
157658
|
+
protoOf(Bot_0).sendGroupMessageBySegments = function(groupUin, clientSequence, random$1, segments) {
|
|
157659
|
+
return promise(this, VOID, VOID, JsBot$sendGroupMessageBySegments$slambda_0(this, groupUin, clientSequence, random$1, segments, null));
|
|
157660
|
+
};
|
|
157545
157661
|
protoOf(Bot_0).recallFriendMessage = function(friendUin, sequence$1) {
|
|
157546
157662
|
return promise(this, VOID, VOID, JsBot$recallFriendMessage$slambda_0(this, friendUin, sequence$1, null));
|
|
157547
157663
|
};
|
|
157548
157664
|
protoOf(Bot_0).recallGroupMessage = function(groupUin, sequence$1) {
|
|
157549
157665
|
return promise(this, VOID, VOID, JsBot$recallGroupMessage$slambda_0(this, groupUin, sequence$1, null));
|
|
157550
157666
|
};
|
|
157551
|
-
protoOf(Bot_0).
|
|
157667
|
+
protoOf(Bot_0).mfu = function(friendUin, limit, startSequence) {
|
|
157552
157668
|
return promise(this, VOID, VOID, JsBot$getFriendHistoryMessages$slambda_0(this, friendUin, limit, startSequence, null));
|
|
157553
157669
|
};
|
|
157554
157670
|
protoOf(Bot_0).getFriendHistoryMessages = function(friendUin, limit, startSequence, $super) {
|
|
157555
157671
|
startSequence = startSequence === VOID ? null : startSequence;
|
|
157556
|
-
return $super === VOID ? this.
|
|
157672
|
+
return $super === VOID ? this.mfu(friendUin, limit, startSequence) : $super.mfu.call(this, friendUin, limit, startSequence);
|
|
157557
157673
|
};
|
|
157558
|
-
protoOf(Bot_0).
|
|
157674
|
+
protoOf(Bot_0).nfu = function(groupUin, limit, startSequence) {
|
|
157559
157675
|
return promise(this, VOID, VOID, JsBot$getGroupHistoryMessages$slambda_0(this, groupUin, limit, startSequence, null));
|
|
157560
157676
|
};
|
|
157561
157677
|
protoOf(Bot_0).getGroupHistoryMessages = function(groupUin, limit, startSequence, $super) {
|
|
157562
157678
|
startSequence = startSequence === VOID ? null : startSequence;
|
|
157563
|
-
return $super === VOID ? this.
|
|
157679
|
+
return $super === VOID ? this.nfu(groupUin, limit, startSequence) : $super.nfu.call(this, groupUin, limit, startSequence);
|
|
157564
157680
|
};
|
|
157565
157681
|
protoOf(Bot_0).getDownloadUrl = function(resourceId) {
|
|
157566
157682
|
return promise(this, VOID, VOID, JsBot$getDownloadUrl$slambda_0(this, resourceId, null));
|
|
@@ -157574,41 +157690,41 @@ protoOf(Bot_0).markFriendMessagesAsRead = function(friendUin, startSequence, sta
|
|
|
157574
157690
|
protoOf(Bot_0).markGroupMessagesAsRead = function(groupUin, startSequence) {
|
|
157575
157691
|
return promise(this, VOID, VOID, JsBot$markGroupMessagesAsRead$slambda_0(this, groupUin, startSequence, null));
|
|
157576
157692
|
};
|
|
157577
|
-
protoOf(Bot_0).
|
|
157693
|
+
protoOf(Bot_0).ofu = function(friendUin, isSelf) {
|
|
157578
157694
|
return promise(this, VOID, VOID, JsBot$sendFriendNudge$slambda_0(this, friendUin, isSelf, null));
|
|
157579
157695
|
};
|
|
157580
157696
|
protoOf(Bot_0).sendFriendNudge = function(friendUin, isSelf, $super) {
|
|
157581
157697
|
isSelf = isSelf === VOID ? false : isSelf;
|
|
157582
|
-
return $super === VOID ? this.
|
|
157698
|
+
return $super === VOID ? this.ofu(friendUin, isSelf) : $super.ofu.call(this, friendUin, isSelf);
|
|
157583
157699
|
};
|
|
157584
|
-
protoOf(Bot_0).
|
|
157700
|
+
protoOf(Bot_0).pfu = function(friendUin, count$1) {
|
|
157585
157701
|
return promise(this, VOID, VOID, JsBot$sendProfileLike$slambda_0(this, friendUin, count$1, null));
|
|
157586
157702
|
};
|
|
157587
157703
|
protoOf(Bot_0).sendProfileLike = function(friendUin, count$1, $super) {
|
|
157588
157704
|
count$1 = count$1 === VOID ? 1 : count$1;
|
|
157589
|
-
return $super === VOID ? this.
|
|
157705
|
+
return $super === VOID ? this.pfu(friendUin, count$1) : $super.pfu.call(this, friendUin, count$1);
|
|
157590
157706
|
};
|
|
157591
|
-
protoOf(Bot_0).
|
|
157707
|
+
protoOf(Bot_0).qfu = function(friendUin, block) {
|
|
157592
157708
|
return promise(this, VOID, VOID, JsBot$deleteFriend$slambda_0(this, friendUin, block, null));
|
|
157593
157709
|
};
|
|
157594
157710
|
protoOf(Bot_0).deleteFriend = function(friendUin, block, $super) {
|
|
157595
157711
|
block = block === VOID ? false : block;
|
|
157596
|
-
return $super === VOID ? this.
|
|
157712
|
+
return $super === VOID ? this.qfu(friendUin, block) : $super.qfu.call(this, friendUin, block);
|
|
157597
157713
|
};
|
|
157598
|
-
protoOf(Bot_0).
|
|
157714
|
+
protoOf(Bot_0).rfu = function(isFiltered, limit) {
|
|
157599
157715
|
return promise(this, VOID, VOID, JsBot$getFriendRequests$slambda_0(this, isFiltered, limit, null));
|
|
157600
157716
|
};
|
|
157601
157717
|
protoOf(Bot_0).getFriendRequests = function(isFiltered, limit, $super) {
|
|
157602
157718
|
isFiltered = isFiltered === VOID ? false : isFiltered;
|
|
157603
157719
|
limit = limit === VOID ? 20 : limit;
|
|
157604
|
-
return $super === VOID ? this.
|
|
157720
|
+
return $super === VOID ? this.rfu(isFiltered, limit) : $super.rfu.call(this, isFiltered, limit);
|
|
157605
157721
|
};
|
|
157606
|
-
protoOf(Bot_0).
|
|
157722
|
+
protoOf(Bot_0).sfu = function(initiatorUid, accept$1, isFiltered) {
|
|
157607
157723
|
return promise(this, VOID, VOID, JsBot$setFriendRequest$slambda_0(this, initiatorUid, accept$1, isFiltered, null));
|
|
157608
157724
|
};
|
|
157609
157725
|
protoOf(Bot_0).setFriendRequest = function(initiatorUid, accept$1, isFiltered, $super) {
|
|
157610
157726
|
isFiltered = isFiltered === VOID ? false : isFiltered;
|
|
157611
|
-
return $super === VOID ? this.
|
|
157727
|
+
return $super === VOID ? this.sfu(initiatorUid, accept$1, isFiltered) : $super.sfu.call(this, initiatorUid, accept$1, isFiltered);
|
|
157612
157728
|
};
|
|
157613
157729
|
protoOf(Bot_0).setGroupName = function(groupUin, groupName) {
|
|
157614
157730
|
return promise(this, VOID, VOID, JsBot$setGroupName$slambda_0(this, groupUin, groupName, null));
|
|
@@ -157631,18 +157747,18 @@ protoOf(Bot_0).setGroupMemberMute = function(groupUin, memberUin, duration) {
|
|
|
157631
157747
|
protoOf(Bot_0).setGroupWholeMute = function(groupUin, isMute) {
|
|
157632
157748
|
return promise(this, VOID, VOID, JsBot$setGroupWholeMute$slambda_0(this, groupUin, isMute, null));
|
|
157633
157749
|
};
|
|
157634
|
-
protoOf(Bot_0).
|
|
157750
|
+
protoOf(Bot_0).tfu = function(groupUin, memberUin, rejectAddRequest, reason) {
|
|
157635
157751
|
return promise(this, VOID, VOID, JsBot$kickGroupMember$slambda_0(this, groupUin, memberUin, rejectAddRequest, reason, null));
|
|
157636
157752
|
};
|
|
157637
157753
|
protoOf(Bot_0).kickGroupMember = function(groupUin, memberUin, rejectAddRequest, reason, $super) {
|
|
157638
157754
|
rejectAddRequest = rejectAddRequest === VOID ? false : rejectAddRequest;
|
|
157639
157755
|
reason = reason === VOID ? "" : reason;
|
|
157640
|
-
return $super === VOID ? this.
|
|
157756
|
+
return $super === VOID ? this.tfu(groupUin, memberUin, rejectAddRequest, reason) : $super.tfu.call(this, groupUin, memberUin, rejectAddRequest, reason);
|
|
157641
157757
|
};
|
|
157642
157758
|
protoOf(Bot_0).getGroupAnnouncements = function(groupUin) {
|
|
157643
157759
|
return promise(this, VOID, VOID, JsBot$getGroupAnnouncements$slambda_0(this, groupUin, null));
|
|
157644
157760
|
};
|
|
157645
|
-
protoOf(Bot_0).
|
|
157761
|
+
protoOf(Bot_0).ufu = function(groupUin, content, imageData, showEditCard, showTipWindow, confirmRequired, isPinned) {
|
|
157646
157762
|
return promise(this, VOID, VOID, JsBot$sendGroupAnnouncement$slambda_0(this, groupUin, content, imageData, showEditCard, showTipWindow, confirmRequired, isPinned, null));
|
|
157647
157763
|
};
|
|
157648
157764
|
protoOf(Bot_0).sendGroupAnnouncement = function(groupUin, content, imageData, showEditCard, showTipWindow, confirmRequired, isPinned, $super) {
|
|
@@ -157651,7 +157767,7 @@ protoOf(Bot_0).sendGroupAnnouncement = function(groupUin, content, imageData, sh
|
|
|
157651
157767
|
showTipWindow = showTipWindow === VOID ? true : showTipWindow;
|
|
157652
157768
|
confirmRequired = confirmRequired === VOID ? true : confirmRequired;
|
|
157653
157769
|
isPinned = isPinned === VOID ? false : isPinned;
|
|
157654
|
-
return $super === VOID ? this.
|
|
157770
|
+
return $super === VOID ? this.ufu(groupUin, content, imageData, showEditCard, showTipWindow, confirmRequired, isPinned) : $super.ufu.call(this, groupUin, content, imageData, showEditCard, showTipWindow, confirmRequired, isPinned);
|
|
157655
157771
|
};
|
|
157656
157772
|
protoOf(Bot_0).deleteGroupAnnouncement = function(groupUin, announcementId) {
|
|
157657
157773
|
return promise(this, VOID, VOID, JsBot$deleteGroupAnnouncement$slambda_0(this, groupUin, announcementId, null));
|
|
@@ -157665,42 +157781,42 @@ protoOf(Bot_0).setGroupEssenceMessage = function(groupUin, sequence$1, isSet) {
|
|
|
157665
157781
|
protoOf(Bot_0).quitGroup = function(groupUin) {
|
|
157666
157782
|
return promise(this, VOID, VOID, JsBot$quitGroup$slambda_0(this, groupUin, null));
|
|
157667
157783
|
};
|
|
157668
|
-
protoOf(Bot_0).
|
|
157784
|
+
protoOf(Bot_0).vfu = function(groupUin, sequence$1, code, isAdd) {
|
|
157669
157785
|
return promise(this, VOID, VOID, JsBot$setGroupMessageReaction$slambda_0(this, groupUin, sequence$1, code, isAdd, null));
|
|
157670
157786
|
};
|
|
157671
157787
|
protoOf(Bot_0).setGroupMessageReaction = function(groupUin, sequence$1, code, isAdd, $super) {
|
|
157672
157788
|
isAdd = isAdd === VOID ? true : isAdd;
|
|
157673
|
-
return $super === VOID ? this.
|
|
157789
|
+
return $super === VOID ? this.vfu(groupUin, sequence$1, code, isAdd) : $super.vfu.call(this, groupUin, sequence$1, code, isAdd);
|
|
157674
157790
|
};
|
|
157675
157791
|
protoOf(Bot_0).sendGroupNudge = function(groupUin, targetUin) {
|
|
157676
157792
|
return promise(this, VOID, VOID, JsBot$sendGroupNudge$slambda_0(this, groupUin, targetUin, null));
|
|
157677
157793
|
};
|
|
157678
|
-
protoOf(Bot_0).
|
|
157794
|
+
protoOf(Bot_0).wfu = function(startSequence, isFiltered, count$1) {
|
|
157679
157795
|
return promise(this, VOID, VOID, JsBot$getGroupNotifications$slambda_0(this, startSequence, isFiltered, count$1, null));
|
|
157680
157796
|
};
|
|
157681
157797
|
protoOf(Bot_0).getGroupNotifications = function(startSequence, isFiltered, count$1, $super) {
|
|
157682
157798
|
startSequence = startSequence === VOID ? null : startSequence;
|
|
157683
157799
|
isFiltered = isFiltered === VOID ? false : isFiltered;
|
|
157684
157800
|
count$1 = count$1 === VOID ? 20 : count$1;
|
|
157685
|
-
return $super === VOID ? this.
|
|
157801
|
+
return $super === VOID ? this.wfu(startSequence, isFiltered, count$1) : $super.wfu.call(this, startSequence, isFiltered, count$1);
|
|
157686
157802
|
};
|
|
157687
|
-
protoOf(Bot_0).
|
|
157803
|
+
protoOf(Bot_0).xfu = function(groupUin, sequence$1, eventType, accept$1, isFiltered, reason) {
|
|
157688
157804
|
return promise(this, VOID, VOID, JsBot$setGroupRequest$slambda_0(this, groupUin, sequence$1, eventType, accept$1, isFiltered, reason, null));
|
|
157689
157805
|
};
|
|
157690
157806
|
protoOf(Bot_0).setGroupRequest = function(groupUin, sequence$1, eventType, accept$1, isFiltered, reason, $super) {
|
|
157691
157807
|
isFiltered = isFiltered === VOID ? false : isFiltered;
|
|
157692
157808
|
reason = reason === VOID ? "" : reason;
|
|
157693
|
-
return $super === VOID ? this.
|
|
157809
|
+
return $super === VOID ? this.xfu(groupUin, sequence$1, eventType, accept$1, isFiltered, reason) : $super.xfu.call(this, groupUin, sequence$1, eventType, accept$1, isFiltered, reason);
|
|
157694
157810
|
};
|
|
157695
157811
|
protoOf(Bot_0).setGroupInvitation = function(groupUin, invitationSeq, accept$1) {
|
|
157696
157812
|
return promise(this, VOID, VOID, JsBot$setGroupInvitation$slambda_0(this, groupUin, invitationSeq, accept$1, null));
|
|
157697
157813
|
};
|
|
157698
|
-
protoOf(Bot_0).
|
|
157814
|
+
protoOf(Bot_0).yfu = function(groupUin, fileName, fileData, parentFolderId) {
|
|
157699
157815
|
return promise(this, VOID, VOID, JsBot$uploadGroupFile$slambda_0(this, groupUin, fileName, fileData, parentFolderId, null));
|
|
157700
157816
|
};
|
|
157701
157817
|
protoOf(Bot_0).uploadGroupFile = function(groupUin, fileName, fileData, parentFolderId, $super) {
|
|
157702
157818
|
parentFolderId = parentFolderId === VOID ? "/" : parentFolderId;
|
|
157703
|
-
return $super === VOID ? this.
|
|
157819
|
+
return $super === VOID ? this.yfu(groupUin, fileName, fileData, parentFolderId) : $super.yfu.call(this, groupUin, fileName, fileData, parentFolderId);
|
|
157704
157820
|
};
|
|
157705
157821
|
protoOf(Bot_0).uploadPrivateFile = function(friendUin, fileName, fileData) {
|
|
157706
157822
|
return promise(this, VOID, VOID, JsBot$uploadPrivateFile$slambda_0(this, friendUin, fileName, fileData, null));
|
|
@@ -157711,13 +157827,13 @@ protoOf(Bot_0).getPrivateFileDownloadUrl = function(friendUin, fileId, fileHash)
|
|
|
157711
157827
|
protoOf(Bot_0).getGroupFileDownloadUrl = function(groupUin, fileId) {
|
|
157712
157828
|
return promise(this, VOID, VOID, JsBot$getGroupFileDownloadUrl$slambda_0(this, groupUin, fileId, null));
|
|
157713
157829
|
};
|
|
157714
|
-
protoOf(Bot_0).
|
|
157830
|
+
protoOf(Bot_0).zfu = function(groupUin, targetDirectory, startIndex) {
|
|
157715
157831
|
return promise(this, VOID, VOID, JsBot$getGroupFileList$slambda_0(this, groupUin, targetDirectory, startIndex, null));
|
|
157716
157832
|
};
|
|
157717
157833
|
protoOf(Bot_0).getGroupFileList = function(groupUin, targetDirectory, startIndex, $super) {
|
|
157718
157834
|
targetDirectory = targetDirectory === VOID ? "/" : targetDirectory;
|
|
157719
157835
|
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
157720
|
-
return $super === VOID ? this.
|
|
157836
|
+
return $super === VOID ? this.zfu(groupUin, targetDirectory, startIndex) : $super.zfu.call(this, groupUin, targetDirectory, startIndex);
|
|
157721
157837
|
};
|
|
157722
157838
|
protoOf(Bot_0).renameGroupFile = function(groupUin, fileId, parentFolderId, newFileName) {
|
|
157723
157839
|
return promise(this, VOID, VOID, JsBot$renameGroupFile$slambda_0(this, groupUin, fileId, parentFolderId, newFileName, null));
|
|
@@ -157937,16 +158053,16 @@ protoOf(BotForwardBlockBuilder).node = function(senderUin, senderName, block) {
|
|
|
157937
158053
|
this_0.dd7_1.g1(new Node$1(senderUin, senderName, messageBuilder.ed7_1));
|
|
157938
158054
|
};
|
|
157939
158055
|
function BotOutgoingMessageBuilder_0(underlying) {
|
|
157940
|
-
this.
|
|
158056
|
+
this.afv_1 = underlying;
|
|
157941
158057
|
}
|
|
157942
158058
|
protoOf(BotOutgoingMessageBuilder_0).text = function(text) {
|
|
157943
|
-
this.
|
|
158059
|
+
this.afv_1.y63(text);
|
|
157944
158060
|
};
|
|
157945
158061
|
protoOf(BotOutgoingMessageBuilder_0).mention = function(uin, name) {
|
|
157946
|
-
this.
|
|
158062
|
+
this.afv_1.fd7(uin, name);
|
|
157947
158063
|
};
|
|
157948
158064
|
protoOf(BotOutgoingMessageBuilder_0).gd7 = function(faceId, isLarge) {
|
|
157949
|
-
this.
|
|
158065
|
+
this.afv_1.gd7(faceId, isLarge);
|
|
157950
158066
|
};
|
|
157951
158067
|
protoOf(BotOutgoingMessageBuilder_0).face = function(faceId, isLarge, $super) {
|
|
157952
158068
|
isLarge = isLarge === VOID ? false : isLarge;
|
|
@@ -157958,10 +158074,10 @@ protoOf(BotOutgoingMessageBuilder_0).face = function(faceId, isLarge, $super) {
|
|
|
157958
158074
|
return tmp;
|
|
157959
158075
|
};
|
|
157960
158076
|
protoOf(BotOutgoingMessageBuilder_0).reply = function(sequence$1) {
|
|
157961
|
-
this.
|
|
158077
|
+
this.afv_1.hd7(sequence$1);
|
|
157962
158078
|
};
|
|
157963
158079
|
protoOf(BotOutgoingMessageBuilder_0).id7 = function(raw, format, width, height, subType, summary) {
|
|
157964
|
-
this.
|
|
158080
|
+
this.afv_1.id7(raw, format, width, height, subType, summary);
|
|
157965
158081
|
};
|
|
157966
158082
|
protoOf(BotOutgoingMessageBuilder_0).image = function(raw, format, width, height, subType, summary, $super) {
|
|
157967
158083
|
subType = subType === VOID ? ImageSubType_NORMAL_getInstance() : subType;
|
|
@@ -157974,13 +158090,13 @@ protoOf(BotOutgoingMessageBuilder_0).image = function(raw, format, width, height
|
|
|
157974
158090
|
return tmp;
|
|
157975
158091
|
};
|
|
157976
158092
|
protoOf(BotOutgoingMessageBuilder_0).record = function(rawSilk, duration) {
|
|
157977
|
-
this.
|
|
158093
|
+
this.afv_1.jd7(rawSilk, duration);
|
|
157978
158094
|
};
|
|
157979
158095
|
protoOf(BotOutgoingMessageBuilder_0).video = function(raw, width, height, duration, thumb, thumbFormat) {
|
|
157980
|
-
this.
|
|
158096
|
+
this.afv_1.kd7(raw, width, height, duration, thumb, thumbFormat);
|
|
157981
158097
|
};
|
|
157982
158098
|
protoOf(BotOutgoingMessageBuilder_0).forward = function(block) {
|
|
157983
|
-
var this_0 = this.
|
|
158099
|
+
var this_0 = this.afv_1;
|
|
157984
158100
|
var forwardBuilder = new Forward_1();
|
|
157985
158101
|
block(new BotForwardBlockBuilder(forwardBuilder));
|
|
157986
158102
|
this_0.ed7_1.g1(new Forward_2(forwardBuilder.dd7_1));
|
|
@@ -157990,10 +158106,10 @@ function CoroutineScope_1(isSupervised) {
|
|
|
157990
158106
|
this.isSupervised = isSupervised;
|
|
157991
158107
|
this.tdm_1 = CoroutineScope_0(Dispatchers_getInstance().s23_1.bi(this.isSupervised ? SupervisorJob() : Job_0()));
|
|
157992
158108
|
}
|
|
157993
|
-
protoOf(CoroutineScope_1).
|
|
158109
|
+
protoOf(CoroutineScope_1).bfv = function() {
|
|
157994
158110
|
return this.isSupervised;
|
|
157995
158111
|
};
|
|
157996
|
-
protoOf(CoroutineScope_1).
|
|
158112
|
+
protoOf(CoroutineScope_1).cfv = function() {
|
|
157997
158113
|
return this.tdm_1;
|
|
157998
158114
|
};
|
|
157999
158115
|
protoOf(CoroutineScope_1).cancel = function() {
|
|
@@ -158003,28 +158119,28 @@ function JsGroupNotifications(notifications, nextSequence) {
|
|
|
158003
158119
|
this.notifications = notifications;
|
|
158004
158120
|
this.nextSequence = nextSequence;
|
|
158005
158121
|
}
|
|
158006
|
-
protoOf(JsGroupNotifications).
|
|
158122
|
+
protoOf(JsGroupNotifications).dfv = function() {
|
|
158007
158123
|
return this.notifications;
|
|
158008
158124
|
};
|
|
158009
|
-
protoOf(JsGroupNotifications).
|
|
158125
|
+
protoOf(JsGroupNotifications).efv = function() {
|
|
158010
158126
|
return this.nextSequence;
|
|
158011
158127
|
};
|
|
158012
158128
|
function SignProvider_0() {}
|
|
158013
158129
|
function JsUrlSignProvider$sign$slambda(this$0, $cmd, $seq, $src, resultContinuation) {
|
|
158014
|
-
this.
|
|
158015
|
-
this.
|
|
158016
|
-
this.
|
|
158017
|
-
this.
|
|
158130
|
+
this.nfv_1 = this$0;
|
|
158131
|
+
this.ofv_1 = $cmd;
|
|
158132
|
+
this.pfv_1 = $seq;
|
|
158133
|
+
this.qfv_1 = $src;
|
|
158018
158134
|
CoroutineImpl.call(this, resultContinuation);
|
|
158019
158135
|
}
|
|
158020
|
-
protoOf(JsUrlSignProvider$sign$slambda).
|
|
158136
|
+
protoOf(JsUrlSignProvider$sign$slambda).sfv = function($this$promise, $completion) {
|
|
158021
158137
|
var tmp = this.q2u($this$promise, $completion);
|
|
158022
158138
|
tmp.h9_1 = Unit_instance;
|
|
158023
158139
|
tmp.i9_1 = null;
|
|
158024
158140
|
return tmp.n9();
|
|
158025
158141
|
};
|
|
158026
158142
|
protoOf(JsUrlSignProvider$sign$slambda).aa = function(p1, $completion) {
|
|
158027
|
-
return this.
|
|
158143
|
+
return this.sfv((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
158028
158144
|
};
|
|
158029
158145
|
protoOf(JsUrlSignProvider$sign$slambda).n9 = function() {
|
|
158030
158146
|
var suspendResult = this.h9_1;
|
|
@@ -158034,7 +158150,7 @@ protoOf(JsUrlSignProvider$sign$slambda).n9 = function() {
|
|
|
158034
158150
|
case 0:
|
|
158035
158151
|
this.g9_1 = 2;
|
|
158036
158152
|
this.f9_1 = 1;
|
|
158037
|
-
suspendResult = this.
|
|
158153
|
+
suspendResult = this.nfv_1.tfv_1.v8w(this.ofv_1, this.pfv_1, this.qfv_1, this);
|
|
158038
158154
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
158039
158155
|
continue $sm;
|
|
158040
158156
|
case 1: return suspendResult;
|
|
@@ -158051,30 +158167,30 @@ protoOf(JsUrlSignProvider$sign$slambda).n9 = function() {
|
|
|
158051
158167
|
while (true);
|
|
158052
158168
|
};
|
|
158053
158169
|
protoOf(JsUrlSignProvider$sign$slambda).q2u = function($this$promise, completion) {
|
|
158054
|
-
var i$1 = new JsUrlSignProvider$sign$slambda(this.
|
|
158055
|
-
i$1.
|
|
158170
|
+
var i$1 = new JsUrlSignProvider$sign$slambda(this.nfv_1, this.ofv_1, this.pfv_1, this.qfv_1, completion);
|
|
158171
|
+
i$1.rfv_1 = $this$promise;
|
|
158056
158172
|
return i$1;
|
|
158057
158173
|
};
|
|
158058
158174
|
function JsUrlSignProvider$sign$slambda_0(this$0, $cmd, $seq, $src, resultContinuation) {
|
|
158059
158175
|
var i$1 = new JsUrlSignProvider$sign$slambda(this$0, $cmd, $seq, $src, resultContinuation);
|
|
158060
158176
|
var l = function($this$promise, $completion) {
|
|
158061
|
-
return i$1.
|
|
158177
|
+
return i$1.sfv($this$promise, $completion);
|
|
158062
158178
|
};
|
|
158063
158179
|
l.$arity = 1;
|
|
158064
158180
|
return l;
|
|
158065
158181
|
}
|
|
158066
158182
|
function JsUrlSignProvider$getAppInfo$slambda(this$0, resultContinuation) {
|
|
158067
|
-
this.
|
|
158183
|
+
this.cfw_1 = this$0;
|
|
158068
158184
|
CoroutineImpl.call(this, resultContinuation);
|
|
158069
158185
|
}
|
|
158070
|
-
protoOf(JsUrlSignProvider$getAppInfo$slambda).
|
|
158186
|
+
protoOf(JsUrlSignProvider$getAppInfo$slambda).efw = function($this$promise, $completion) {
|
|
158071
158187
|
var tmp = this.q2u($this$promise, $completion);
|
|
158072
158188
|
tmp.h9_1 = Unit_instance;
|
|
158073
158189
|
tmp.i9_1 = null;
|
|
158074
158190
|
return tmp.n9();
|
|
158075
158191
|
};
|
|
158076
158192
|
protoOf(JsUrlSignProvider$getAppInfo$slambda).aa = function(p1, $completion) {
|
|
158077
|
-
return this.
|
|
158193
|
+
return this.efw((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
158078
158194
|
};
|
|
158079
158195
|
protoOf(JsUrlSignProvider$getAppInfo$slambda).n9 = function() {
|
|
158080
158196
|
var suspendResult = this.h9_1;
|
|
@@ -158084,7 +158200,7 @@ protoOf(JsUrlSignProvider$getAppInfo$slambda).n9 = function() {
|
|
|
158084
158200
|
case 0:
|
|
158085
158201
|
this.g9_1 = 2;
|
|
158086
158202
|
this.f9_1 = 1;
|
|
158087
|
-
suspendResult = this.
|
|
158203
|
+
suspendResult = this.cfw_1.tfv_1.i8y(this);
|
|
158088
158204
|
if (suspendResult === get_COROUTINE_SUSPENDED()) return suspendResult;
|
|
158089
158205
|
continue $sm;
|
|
158090
158206
|
case 1: return suspendResult;
|
|
@@ -158101,14 +158217,14 @@ protoOf(JsUrlSignProvider$getAppInfo$slambda).n9 = function() {
|
|
|
158101
158217
|
while (true);
|
|
158102
158218
|
};
|
|
158103
158219
|
protoOf(JsUrlSignProvider$getAppInfo$slambda).q2u = function($this$promise, completion) {
|
|
158104
|
-
var i$1 = new JsUrlSignProvider$getAppInfo$slambda(this.
|
|
158105
|
-
i$1.
|
|
158220
|
+
var i$1 = new JsUrlSignProvider$getAppInfo$slambda(this.cfw_1, completion);
|
|
158221
|
+
i$1.dfw_1 = $this$promise;
|
|
158106
158222
|
return i$1;
|
|
158107
158223
|
};
|
|
158108
158224
|
function JsUrlSignProvider$getAppInfo$slambda_0(this$0, resultContinuation) {
|
|
158109
158225
|
var i$1 = new JsUrlSignProvider$getAppInfo$slambda(this$0, resultContinuation);
|
|
158110
158226
|
var l = function($this$promise, $completion) {
|
|
158111
|
-
return i$1.
|
|
158227
|
+
return i$1.efw($this$promise, $completion);
|
|
158112
158228
|
};
|
|
158113
158229
|
l.$arity = 1;
|
|
158114
158230
|
return l;
|
|
@@ -158116,9 +158232,9 @@ function JsUrlSignProvider$getAppInfo$slambda_0(this$0, resultContinuation) {
|
|
|
158116
158232
|
function UrlSignProvider_0(scope, url$1, httpProxy) {
|
|
158117
158233
|
httpProxy = httpProxy === VOID ? null : httpProxy;
|
|
158118
158234
|
this.scope = scope;
|
|
158119
|
-
this.
|
|
158235
|
+
this.tfv_1 = new UrlSignProvider(url$1, httpProxy);
|
|
158120
158236
|
}
|
|
158121
|
-
protoOf(UrlSignProvider_0).
|
|
158237
|
+
protoOf(UrlSignProvider_0).ffw = function() {
|
|
158122
158238
|
return this.scope;
|
|
158123
158239
|
};
|
|
158124
158240
|
protoOf(UrlSignProvider_0).sign = function(cmd, seq, src) {
|
|
@@ -158540,7 +158656,7 @@ defineProp(protoOf(UserInfoGender), "name", protoOf(UserInfoGender).m);
|
|
|
158540
158656
|
defineProp(protoOf(UserInfoGender), "ordinal", protoOf(UserInfoGender).l3);
|
|
158541
158657
|
defineProp(protoOf(Bot_0), "uin", protoOf(Bot_0).x7w);
|
|
158542
158658
|
defineProp(protoOf(Bot_0), "uid", protoOf(Bot_0).b7x);
|
|
158543
|
-
defineProp(protoOf(Bot_0), "isLoggedIn", protoOf(Bot_0).
|
|
158659
|
+
defineProp(protoOf(Bot_0), "isLoggedIn", protoOf(Bot_0).afu);
|
|
158544
158660
|
Companion_instance_3 = new Companion();
|
|
158545
158661
|
Companion_instance_5 = new Companion_1();
|
|
158546
158662
|
new Companion_2();
|