git-semver-tagger 1.6.2 → 1.6.3
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.
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
function addFormatStructureForTime(structure) {
|
|
309
309
|
this.g1a(structure);
|
|
310
310
|
}
|
|
311
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
311
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
312
312
|
function offsetHours$default(padding, $super) {
|
|
313
313
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
314
314
|
var tmp;
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
return tmp;
|
|
362
362
|
}
|
|
363
363
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
364
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
364
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithTime, WithUtcOffset]);
|
|
365
365
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
366
366
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
367
367
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
initMetadataForClass(TaggerConfig, 'TaggerConfig', TaggerConfig, VOID, VOID, VOID, VOID, {0: $serializer_getInstance});
|
|
86
86
|
//endregion
|
|
87
87
|
function Versions() {
|
|
88
|
-
this.d31_1 = '1.6.
|
|
88
|
+
this.d31_1 = '1.6.3';
|
|
89
89
|
}
|
|
90
90
|
var Versions_instance;
|
|
91
91
|
function Versions_getInstance() {
|
|
@@ -37,11 +37,6 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
37
37
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
-
if (typeof Math.log2 === 'undefined') {
|
|
41
|
-
Math.log2 = function (x) {
|
|
42
|
-
return Math.log(x) * Math.LOG2E;
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
40
|
if (typeof Math.clz32 === 'undefined') {
|
|
46
41
|
Math.clz32 = function (log, LN2) {
|
|
47
42
|
return function (x) {
|
|
@@ -53,6 +48,11 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
53
48
|
};
|
|
54
49
|
}(Math.log, Math.LN2);
|
|
55
50
|
}
|
|
51
|
+
if (typeof Math.log2 === 'undefined') {
|
|
52
|
+
Math.log2 = function (x) {
|
|
53
|
+
return Math.log(x) * Math.LOG2E;
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
56
|
if (typeof String.prototype.startsWith === 'undefined') {
|
|
57
57
|
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
58
58
|
position = position || 0;
|
|
@@ -93,8 +93,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
93
93
|
initMetadataForInterface(Entry, 'Entry');
|
|
94
94
|
initMetadataForInterface(KtMap, 'Map');
|
|
95
95
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
96
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
97
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
96
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
97
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
98
98
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
99
99
|
initMetadataForCompanion(Companion_0);
|
|
100
100
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
@@ -114,7 +114,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
114
114
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
115
115
|
initMetadataForObject(Unit, 'Unit');
|
|
116
116
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
117
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
117
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
118
118
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
119
119
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
120
120
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -127,7 +127,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
127
127
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
128
128
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
129
129
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
130
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
130
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
131
131
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
132
132
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
133
133
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|