git-semver-tagger 1.5.13 → 1.5.15
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.
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
function addFormatStructureForTime(structure) {
|
|
280
280
|
this.i16(structure);
|
|
281
281
|
}
|
|
282
|
-
setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
282
|
+
setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
283
283
|
function offsetHours$default(padding, $super) {
|
|
284
284
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
285
285
|
var tmp;
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
return tmp;
|
|
333
333
|
}
|
|
334
334
|
setMetadataFor(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', interfaceMeta, VOID, [WithUtcOffset]);
|
|
335
|
-
setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
335
|
+
setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithUtcOffset, WithTime, WithDate]);
|
|
336
336
|
setMetadataFor(AbstractDateTimeFormat, 'AbstractDateTimeFormat', classMeta);
|
|
337
337
|
setMetadataFor(DateTimeComponentsFormat, 'DateTimeComponentsFormat', classMeta, AbstractDateTimeFormat);
|
|
338
338
|
setMetadataFor(TwoDigitNumber, 'TwoDigitNumber', classMeta);
|
|
@@ -32,16 +32,6 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
32
32
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
33
33
|
}
|
|
34
34
|
});
|
|
35
|
-
if (typeof Math.log2 === 'undefined') {
|
|
36
|
-
Math.log2 = function (x) {
|
|
37
|
-
return Math.log(x) * Math.LOG2E;
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
if (typeof Math.log10 === 'undefined') {
|
|
41
|
-
Math.log10 = function (x) {
|
|
42
|
-
return Math.log(x) * Math.LOG10E;
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
35
|
if (typeof Math.clz32 === 'undefined') {
|
|
46
36
|
Math.clz32 = function (log, LN2) {
|
|
47
37
|
return function (x) {
|
|
@@ -53,11 +43,15 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
53
43
|
};
|
|
54
44
|
}(Math.log, Math.LN2);
|
|
55
45
|
}
|
|
56
|
-
if (typeof
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
46
|
+
if (typeof Math.log2 === 'undefined') {
|
|
47
|
+
Math.log2 = function (x) {
|
|
48
|
+
return Math.log(x) * Math.LOG2E;
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
if (typeof Math.log10 === 'undefined') {
|
|
52
|
+
Math.log10 = function (x) {
|
|
53
|
+
return Math.log(x) * Math.LOG10E;
|
|
54
|
+
};
|
|
61
55
|
}
|
|
62
56
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
63
57
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
@@ -70,6 +64,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
70
64
|
return lastIndex !== -1 && lastIndex === position;
|
|
71
65
|
}});
|
|
72
66
|
}
|
|
67
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
68
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
69
|
+
position = position || 0;
|
|
70
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
71
|
+
}});
|
|
72
|
+
}
|
|
73
73
|
if (typeof Math.imul === 'undefined') {
|
|
74
74
|
Math.imul = function imul(a, b) {
|
|
75
75
|
return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
|
|
@@ -99,11 +99,11 @@ if (typeof Math.imul === 'undefined') {
|
|
|
99
99
|
setMetadataFor(Collection, 'Collection', interfaceMeta);
|
|
100
100
|
setMetadataFor(AbstractCollection, 'AbstractCollection', classMeta, VOID, [Collection]);
|
|
101
101
|
setMetadataFor(MutableIterable, 'MutableIterable', interfaceMeta);
|
|
102
|
-
setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection,
|
|
102
|
+
setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
103
103
|
setMetadataFor(IteratorImpl, 'IteratorImpl', classMeta);
|
|
104
104
|
setMetadataFor(ListIteratorImpl, 'ListIteratorImpl', classMeta, IteratorImpl);
|
|
105
105
|
setMetadataFor(List, 'List', interfaceMeta, VOID, [Collection]);
|
|
106
|
-
setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List,
|
|
106
|
+
setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List, Collection, MutableIterable]);
|
|
107
107
|
setMetadataFor(AbstractMutableList, 'AbstractMutableList', classMeta, AbstractMutableCollection, [AbstractMutableCollection, MutableList]);
|
|
108
108
|
setMetadataFor(RandomAccess, 'RandomAccess', interfaceMeta);
|
|
109
109
|
setMetadataFor(SubList, 'SubList', classMeta, AbstractMutableList, [AbstractMutableList, RandomAccess]);
|
|
@@ -112,13 +112,13 @@ if (typeof Math.imul === 'undefined') {
|
|
|
112
112
|
setMetadataFor(MutableMap, 'MutableMap', interfaceMeta, VOID, [Map_0]);
|
|
113
113
|
setMetadataFor(AbstractMutableMap, 'AbstractMutableMap', classMeta, AbstractMap, [AbstractMap, MutableMap]);
|
|
114
114
|
setMetadataFor(Set, 'Set', interfaceMeta, VOID, [Collection]);
|
|
115
|
-
setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set,
|
|
115
|
+
setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set, Collection, MutableIterable]);
|
|
116
116
|
setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection, MutableSet]);
|
|
117
117
|
setMetadataFor(Companion, 'Companion', objectMeta);
|
|
118
118
|
setMetadataFor(ArrayList, 'ArrayList', classMeta, AbstractMutableList, [AbstractMutableList, MutableList, RandomAccess], ArrayList_init_$Create$);
|
|
119
119
|
setMetadataFor(HashMap, 'HashMap', classMeta, AbstractMutableMap, [AbstractMutableMap, MutableMap], HashMap_init_$Create$);
|
|
120
120
|
setMetadataFor(HashMapKeys, 'HashMapKeys', classMeta, AbstractMutableSet, [MutableSet, AbstractMutableSet]);
|
|
121
|
-
setMetadataFor(HashMapValues, 'HashMapValues', classMeta, AbstractMutableCollection, [
|
|
121
|
+
setMetadataFor(HashMapValues, 'HashMapValues', classMeta, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
122
122
|
setMetadataFor(HashMapEntrySetBase, 'HashMapEntrySetBase', classMeta, AbstractMutableSet, [MutableSet, AbstractMutableSet]);
|
|
123
123
|
setMetadataFor(HashMapEntrySet, 'HashMapEntrySet', classMeta, HashMapEntrySetBase);
|
|
124
124
|
setMetadataFor(HashMapKeysDefault$iterator$1, VOID, classMeta);
|