git-digger 1.8.20 → 1.8.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/kotlin/bin/digger
CHANGED
|
File without changes
|
|
@@ -94,10 +94,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
94
94
|
initMetadataForInterface(Entry, 'Entry');
|
|
95
95
|
initMetadataForInterface(KtMap, 'Map');
|
|
96
96
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
97
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
97
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
98
98
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
99
99
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
100
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
100
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
101
101
|
initMetadataForCompanion(Companion_0);
|
|
102
102
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
103
103
|
initMetadataForCompanion(Companion_1);
|
|
@@ -115,7 +115,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
115
115
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
116
116
|
initMetadataForObject(Unit, 'Unit');
|
|
117
117
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
118
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
118
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
|
|
119
119
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
120
120
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
121
121
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -128,7 +128,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
128
128
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
129
129
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
130
130
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
131
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
131
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
132
132
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
133
133
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
134
134
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
var isFinite = kotlin_kotlin.$_$.ac;
|
|
52
52
|
var isFinite_0 = kotlin_kotlin.$_$.zb;
|
|
53
53
|
var toString_1 = kotlin_kotlin.$_$.i1;
|
|
54
|
-
var CompositeEncoder = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.v;
|
|
55
54
|
var Encoder = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.w;
|
|
55
|
+
var CompositeEncoder = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.v;
|
|
56
56
|
var Companion_getInstance = kotlin_kotlin.$_$.w2;
|
|
57
57
|
var serializer_0 = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.n;
|
|
58
58
|
var Companion_getInstance_0 = kotlin_kotlin.$_$.x2;
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
initMetadataForClass(JsonEncodingException, 'JsonEncodingException', VOID, JsonException);
|
|
90
90
|
initMetadataForClass(Key, 'Key', Key);
|
|
91
91
|
initMetadataForClass(DescriptorSchemaCache, 'DescriptorSchemaCache', DescriptorSchemaCache);
|
|
92
|
-
initMetadataForClass(StreamingJsonEncoder, 'StreamingJsonEncoder', VOID, AbstractEncoder, [
|
|
92
|
+
initMetadataForClass(StreamingJsonEncoder, 'StreamingJsonEncoder', VOID, AbstractEncoder, [Encoder, CompositeEncoder, AbstractEncoder]);
|
|
93
93
|
initMetadataForClass(WriteMode, 'WriteMode', VOID, Enum);
|
|
94
94
|
initMetadataForClass(JsonToStringWriter, 'JsonToStringWriter', JsonToStringWriter);
|
|
95
95
|
//endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-digger",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.24",
|
|
4
4
|
"main": "kotlin/command-line-tools-digger-cli.js",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"source-map-support": "0.5.21"
|
|
@@ -25,5 +25,6 @@
|
|
|
25
25
|
"bin": {
|
|
26
26
|
"digger": "kotlin/bin/digger"
|
|
27
27
|
},
|
|
28
|
-
"homepage": "https://github.com/robertfmurdock/ze-great-tools"
|
|
28
|
+
"homepage": "https://github.com/robertfmurdock/ze-great-tools",
|
|
29
|
+
"repository": "github:robertfmurdock/ze-great-tools"
|
|
29
30
|
}
|