@komune-io/im-space-domain 0.21.0 → 0.22.0-alpha.12bf4a2
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.
|
@@ -80,21 +80,21 @@ if (typeof Math.imul === 'undefined') {
|
|
|
80
80
|
setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, Collection]);
|
|
81
81
|
setMetadataFor(IteratorImpl, 'IteratorImpl', classMeta);
|
|
82
82
|
setMetadataFor(List, 'List', interfaceMeta, VOID, [Collection]);
|
|
83
|
-
setMetadataFor(AbstractMutableList, 'AbstractMutableList', classMeta, AbstractMutableCollection, [AbstractMutableCollection,
|
|
83
|
+
setMetadataFor(AbstractMutableList, 'AbstractMutableList', classMeta, AbstractMutableCollection, [AbstractMutableCollection, List, Collection]);
|
|
84
84
|
setMetadataFor(Map_0, 'Map', interfaceMeta);
|
|
85
85
|
setMetadataFor(AbstractMap, 'AbstractMap', classMeta, VOID, [Map_0]);
|
|
86
86
|
setMetadataFor(AbstractMutableMap, 'AbstractMutableMap', classMeta, AbstractMap, [AbstractMap, Map_0]);
|
|
87
87
|
setMetadataFor(Set, 'Set', interfaceMeta, VOID, [Collection]);
|
|
88
|
-
setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection,
|
|
88
|
+
setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection, Collection, Set]);
|
|
89
89
|
setMetadataFor(Companion, 'Companion', objectMeta);
|
|
90
|
-
setMetadataFor(ArrayList, 'ArrayList', classMeta, AbstractMutableList, [AbstractMutableList,
|
|
90
|
+
setMetadataFor(ArrayList, 'ArrayList', classMeta, AbstractMutableList, [AbstractMutableList, List, Collection], ArrayList_init_$Create$);
|
|
91
91
|
setMetadataFor(HashMap, 'HashMap', classMeta, AbstractMutableMap, [AbstractMutableMap, Map_0], HashMap_init_$Create$);
|
|
92
|
-
setMetadataFor(HashMapKeys, 'HashMapKeys', classMeta, AbstractMutableSet, [
|
|
93
|
-
setMetadataFor(HashMapEntrySetBase, 'HashMapEntrySetBase', classMeta, AbstractMutableSet, [
|
|
92
|
+
setMetadataFor(HashMapKeys, 'HashMapKeys', classMeta, AbstractMutableSet, [Collection, Set, AbstractMutableSet]);
|
|
93
|
+
setMetadataFor(HashMapEntrySetBase, 'HashMapEntrySetBase', classMeta, AbstractMutableSet, [Collection, Set, AbstractMutableSet]);
|
|
94
94
|
setMetadataFor(HashMapEntrySet, 'HashMapEntrySet', classMeta, HashMapEntrySetBase);
|
|
95
95
|
setMetadataFor(HashMapKeysDefault$iterator$1, VOID, classMeta);
|
|
96
96
|
setMetadataFor(HashMapKeysDefault, 'HashMapKeysDefault', classMeta, AbstractMutableSet);
|
|
97
|
-
setMetadataFor(HashSet, 'HashSet', classMeta, AbstractMutableSet, [AbstractMutableSet,
|
|
97
|
+
setMetadataFor(HashSet, 'HashSet', classMeta, AbstractMutableSet, [AbstractMutableSet, Collection, Set], HashSet_init_$Create$);
|
|
98
98
|
setMetadataFor(Companion_0, 'Companion', objectMeta);
|
|
99
99
|
setMetadataFor(Itr, 'Itr', classMeta);
|
|
100
100
|
setMetadataFor(KeysItr, 'KeysItr', classMeta, Itr);
|
|
@@ -140,7 +140,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
140
140
|
setMetadataFor(InternalMap, 'InternalMap', interfaceMeta);
|
|
141
141
|
setMetadataFor(InternalHashMap, 'InternalHashMap', classMeta, VOID, [InternalMap], InternalHashMap_init_$Create$);
|
|
142
142
|
setMetadataFor(LinkedHashMap, 'LinkedHashMap', classMeta, HashMap, [HashMap, Map_0], LinkedHashMap_init_$Create$);
|
|
143
|
-
setMetadataFor(LinkedHashSet, 'LinkedHashSet', classMeta, HashSet, [HashSet,
|
|
143
|
+
setMetadataFor(LinkedHashSet, 'LinkedHashSet', classMeta, HashSet, [HashSet, Collection, Set], LinkedHashSet_init_$Create$);
|
|
144
144
|
setMetadataFor(Exception, 'Exception', classMeta, Error, VOID, Exception_init_$Create$);
|
|
145
145
|
setMetadataFor(RuntimeException, 'RuntimeException', classMeta, Exception, VOID, RuntimeException_init_$Create$);
|
|
146
146
|
setMetadataFor(IllegalStateException, 'IllegalStateException', classMeta, RuntimeException, VOID, IllegalStateException_init_$Create$);
|
|
@@ -383,7 +383,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
383
383
|
setMetadataFor(Symbol_0, 'Symbol', classMeta);
|
|
384
384
|
setMetadataFor(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', classMeta, CoroutineDispatcher, VOID, VOID, VOID, VOID, [1]);
|
|
385
385
|
setMetadataFor(NodeDispatcher, 'NodeDispatcher', objectMeta, SetTimeoutBasedDispatcher, VOID, VOID, VOID, VOID, [1]);
|
|
386
|
-
setMetadataFor(MessageQueue, 'MessageQueue', classMeta, VOID, [
|
|
386
|
+
setMetadataFor(MessageQueue, 'MessageQueue', classMeta, VOID, [List, Collection]);
|
|
387
387
|
setMetadataFor(ScheduledMessageQueue, 'ScheduledMessageQueue', classMeta, MessageQueue);
|
|
388
388
|
setMetadataFor(WindowMessageQueue, 'WindowMessageQueue', classMeta, MessageQueue);
|
|
389
389
|
setMetadataFor(Dispatchers, 'Dispatchers', objectMeta);
|
package/package.json
CHANGED