@cruglobal/godtools-shared 0.9.3-SNAPSHOT.1447 → 0.9.3-SNAPSHOT.1450
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/antlr-kotlin-antlr-kotlin-runtime-js-ir.js +1 -1
- package/kotlin-kotlin-stdlib.js +7 -7
- package/kotlin-mpp-godtools-tool-parser-module-parser.js +171 -208
- package/kotlin-mpp-godtools-tool-parser-module-parser.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.d.ts +14 -22
- package/kotlinx-coroutines-core.js +9 -9
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -99,65 +99,57 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
99
99
|
namespace AnalyticsEvent {
|
|
100
100
|
abstract class System {
|
|
101
101
|
private constructor();
|
|
102
|
-
static get ADOBE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
103
|
-
get name(): "ADOBE";
|
|
104
|
-
get ordinal(): 0;
|
|
105
|
-
};
|
|
106
102
|
static get APPSFLYER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
107
103
|
get name(): "APPSFLYER";
|
|
108
|
-
get ordinal():
|
|
104
|
+
get ordinal(): 0;
|
|
109
105
|
};
|
|
110
106
|
static get FACEBOOK(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
111
107
|
get name(): "FACEBOOK";
|
|
112
|
-
get ordinal():
|
|
108
|
+
get ordinal(): 1;
|
|
113
109
|
};
|
|
114
110
|
static get FIREBASE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
115
111
|
get name(): "FIREBASE";
|
|
116
|
-
get ordinal():
|
|
112
|
+
get ordinal(): 2;
|
|
117
113
|
};
|
|
118
114
|
static get SNOWPLOW(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
119
115
|
get name(): "SNOWPLOW";
|
|
120
|
-
get ordinal():
|
|
116
|
+
get ordinal(): 3;
|
|
121
117
|
};
|
|
122
118
|
static get USER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
123
119
|
get name(): "USER";
|
|
124
|
-
get ordinal():
|
|
120
|
+
get ordinal(): 4;
|
|
125
121
|
};
|
|
126
122
|
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
127
123
|
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
128
|
-
get name(): "
|
|
129
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4
|
|
124
|
+
get name(): "APPSFLYER" | "FACEBOOK" | "FIREBASE" | "SNOWPLOW" | "USER";
|
|
125
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
130
126
|
}
|
|
131
127
|
abstract class Trigger {
|
|
132
128
|
private constructor();
|
|
133
|
-
static get SELECTED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
134
|
-
get name(): "SELECTED";
|
|
135
|
-
get ordinal(): 0;
|
|
136
|
-
};
|
|
137
129
|
static get VISIBLE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
138
130
|
get name(): "VISIBLE";
|
|
139
|
-
get ordinal():
|
|
131
|
+
get ordinal(): 0;
|
|
140
132
|
};
|
|
141
133
|
static get HIDDEN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
142
134
|
get name(): "HIDDEN";
|
|
143
|
-
get ordinal():
|
|
135
|
+
get ordinal(): 1;
|
|
144
136
|
};
|
|
145
137
|
static get CLICKED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
146
138
|
get name(): "CLICKED";
|
|
147
|
-
get ordinal():
|
|
139
|
+
get ordinal(): 2;
|
|
148
140
|
};
|
|
149
141
|
static get DEFAULT(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
150
142
|
get name(): "DEFAULT";
|
|
151
|
-
get ordinal():
|
|
143
|
+
get ordinal(): 3;
|
|
152
144
|
};
|
|
153
145
|
static get UNKNOWN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
154
146
|
get name(): "UNKNOWN";
|
|
155
|
-
get ordinal():
|
|
147
|
+
get ordinal(): 4;
|
|
156
148
|
};
|
|
157
149
|
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
158
150
|
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
159
|
-
get name(): "
|
|
160
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4
|
|
151
|
+
get name(): "VISIBLE" | "HIDDEN" | "CLICKED" | "DEFAULT" | "UNKNOWN";
|
|
152
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
161
153
|
}
|
|
162
154
|
}
|
|
163
155
|
}
|
|
@@ -215,6 +215,11 @@
|
|
|
215
215
|
setMetadataFor(BufferedChannelIterator, 'BufferedChannelIterator', classMeta, VOID, [Waiter], VOID, VOID, VOID, [0, 3]);
|
|
216
216
|
setMetadataFor($sendCOROUTINE$2, '$sendCOROUTINE$2', classMeta, CoroutineImpl);
|
|
217
217
|
setMetadataFor($receiveCatchingCOROUTINE$4, '$receiveCatchingCOROUTINE$4', classMeta, CoroutineImpl);
|
|
218
|
+
function close$default(cause, $super) {
|
|
219
|
+
cause = cause === VOID ? null : cause;
|
|
220
|
+
return $super === VOID ? this.ix(cause) : $super.ix.call(this, cause);
|
|
221
|
+
}
|
|
222
|
+
setMetadataFor(SendChannel, 'SendChannel', interfaceMeta, VOID, VOID, VOID, VOID, VOID, [1]);
|
|
218
223
|
function cancel$default_0(cause, $super) {
|
|
219
224
|
cause = cause === VOID ? null : cause;
|
|
220
225
|
var tmp;
|
|
@@ -227,12 +232,7 @@
|
|
|
227
232
|
return tmp;
|
|
228
233
|
}
|
|
229
234
|
setMetadataFor(ReceiveChannel, 'ReceiveChannel', interfaceMeta, VOID, VOID, VOID, VOID, VOID, [0]);
|
|
230
|
-
|
|
231
|
-
cause = cause === VOID ? null : cause;
|
|
232
|
-
return $super === VOID ? this.ix(cause) : $super.ix.call(this, cause);
|
|
233
|
-
}
|
|
234
|
-
setMetadataFor(SendChannel, 'SendChannel', interfaceMeta, VOID, VOID, VOID, VOID, VOID, [1]);
|
|
235
|
-
setMetadataFor(BufferedChannel, 'BufferedChannel', classMeta, VOID, [ReceiveChannel, SendChannel], VOID, VOID, VOID, [1, 4, 0, 3]);
|
|
235
|
+
setMetadataFor(BufferedChannel, 'BufferedChannel', classMeta, VOID, [SendChannel, ReceiveChannel], VOID, VOID, VOID, [1, 4, 0, 3]);
|
|
236
236
|
setMetadataFor(WaiterEB, 'WaiterEB', classMeta);
|
|
237
237
|
setMetadataFor(ReceiveCatching, 'ReceiveCatching', classMeta, VOID, [Waiter]);
|
|
238
238
|
setMetadataFor(Factory, 'Factory', objectMeta);
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
setMetadataFor(ChannelResult, 'ChannelResult', classMeta);
|
|
243
243
|
setMetadataFor(ClosedSendChannelException, 'ClosedSendChannelException', classMeta, IllegalStateException);
|
|
244
244
|
setMetadataFor(ClosedReceiveChannelException, 'ClosedReceiveChannelException', classMeta, NoSuchElementException);
|
|
245
|
-
setMetadataFor(ChannelCoroutine, 'ChannelCoroutine', classMeta, AbstractCoroutine, [AbstractCoroutine,
|
|
245
|
+
setMetadataFor(ChannelCoroutine, 'ChannelCoroutine', classMeta, AbstractCoroutine, [AbstractCoroutine, SendChannel, ReceiveChannel], VOID, VOID, VOID, [0, 1]);
|
|
246
246
|
setMetadataFor(ConflatedBufferedChannel, 'ConflatedBufferedChannel', classMeta, BufferedChannel, VOID, VOID, VOID, VOID, [1, 0]);
|
|
247
247
|
setMetadataFor(ProducerScope, 'ProducerScope', interfaceMeta, VOID, [CoroutineScope, SendChannel], VOID, VOID, VOID, [1]);
|
|
248
248
|
setMetadataFor(ProducerCoroutine, 'ProducerCoroutine', classMeta, ChannelCoroutine, [ChannelCoroutine, ProducerScope], VOID, VOID, VOID, [0, 1]);
|
|
@@ -313,12 +313,12 @@
|
|
|
313
313
|
setMetadataFor(Symbol, 'Symbol', classMeta);
|
|
314
314
|
setMetadataFor(SelectInstance, 'SelectInstance', interfaceMeta);
|
|
315
315
|
setMetadataFor(ClauseData, 'ClauseData', classMeta, VOID, VOID, VOID, VOID, VOID, [1]);
|
|
316
|
-
setMetadataFor(SelectImplementation, 'SelectImplementation', classMeta, CancelHandler, [CancelHandler,
|
|
316
|
+
setMetadataFor(SelectImplementation, 'SelectImplementation', classMeta, CancelHandler, [CancelHandler, Waiter, SelectInstance], VOID, VOID, VOID, [0, 2]);
|
|
317
317
|
setMetadataFor(TrySelectDetailedResult, 'TrySelectDetailedResult', classMeta, Enum);
|
|
318
318
|
setMetadataFor(UndispatchedCoroutine, 'UndispatchedCoroutine', classMeta, ScopeCoroutine, VOID, VOID, VOID, VOID, [0]);
|
|
319
319
|
setMetadataFor(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', classMeta, CoroutineDispatcher, VOID, VOID, VOID, VOID, [1]);
|
|
320
320
|
setMetadataFor(NodeDispatcher, 'NodeDispatcher', objectMeta, SetTimeoutBasedDispatcher, VOID, VOID, VOID, VOID, [1]);
|
|
321
|
-
setMetadataFor(MessageQueue, 'MessageQueue', classMeta, VOID, [
|
|
321
|
+
setMetadataFor(MessageQueue, 'MessageQueue', classMeta, VOID, [List, Collection]);
|
|
322
322
|
setMetadataFor(ScheduledMessageQueue, 'ScheduledMessageQueue', classMeta, MessageQueue);
|
|
323
323
|
setMetadataFor(WindowMessageQueue, 'WindowMessageQueue', classMeta, MessageQueue);
|
|
324
324
|
setMetadataFor(Dispatchers, 'Dispatchers', objectMeta);
|