git-digger 1.2.17 → 1.2.18
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.
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
function addFormatStructureForTime(structure) {
|
|
279
279
|
this.lw(structure);
|
|
280
280
|
}
|
|
281
|
-
setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
281
|
+
setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
282
282
|
function offsetHours$default(padding, $super) {
|
|
283
283
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
284
284
|
var tmp;
|
|
@@ -331,7 +331,7 @@
|
|
|
331
331
|
return tmp;
|
|
332
332
|
}
|
|
333
333
|
setMetadataFor(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', interfaceMeta, VOID, [WithUtcOffset]);
|
|
334
|
-
setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
334
|
+
setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithUtcOffset, WithTime]);
|
|
335
335
|
setMetadataFor(AbstractDateTimeFormat, 'AbstractDateTimeFormat', classMeta);
|
|
336
336
|
setMetadataFor(DateTimeComponentsFormat, 'DateTimeComponentsFormat', classMeta, AbstractDateTimeFormat);
|
|
337
337
|
setMetadataFor(TwoDigitNumber, 'TwoDigitNumber', classMeta);
|
|
@@ -43,16 +43,16 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
43
43
|
};
|
|
44
44
|
}(Math.log, Math.LN2);
|
|
45
45
|
}
|
|
46
|
-
if (typeof Math.log10 === 'undefined') {
|
|
47
|
-
Math.log10 = function (x) {
|
|
48
|
-
return Math.log(x) * Math.LOG10E;
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
46
|
if (typeof Math.log2 === 'undefined') {
|
|
52
47
|
Math.log2 = function (x) {
|
|
53
48
|
return Math.log(x) * Math.LOG2E;
|
|
54
49
|
};
|
|
55
50
|
}
|
|
51
|
+
if (typeof Math.log10 === 'undefined') {
|
|
52
|
+
Math.log10 = function (x) {
|
|
53
|
+
return Math.log(x) * Math.LOG10E;
|
|
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;
|
|
@@ -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, MutableIterable, Collection]);
|
|
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, MutableIterable, Collection]);
|
|
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,7 +112,7 @@ 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, MutableIterable, Collection]);
|
|
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$);
|