@solibo/solibo-sdk 1.0.39 → 1.0.40
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.
|
@@ -361,7 +361,7 @@ function addFormatStructureForDate(structure) {
|
|
|
361
361
|
function addFormatStructureForTime(structure) {
|
|
362
362
|
this.g1i(structure);
|
|
363
363
|
}
|
|
364
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
364
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
365
365
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
366
366
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
367
367
|
function set_fractionOfSecond(value) {
|
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -37,22 +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.clz32 === 'undefined') {
|
|
41
|
-
Math.clz32 = function (log, LN2) {
|
|
42
|
-
return function (x) {
|
|
43
|
-
var asUint = x >>> 0;
|
|
44
|
-
if (asUint === 0) {
|
|
45
|
-
return 32;
|
|
46
|
-
}
|
|
47
|
-
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
48
|
-
};
|
|
49
|
-
}(Math.log, Math.LN2);
|
|
50
|
-
}
|
|
51
|
-
if (typeof Math.log10 === 'undefined') {
|
|
52
|
-
Math.log10 = function (x) {
|
|
53
|
-
return Math.log(x) * Math.LOG10E;
|
|
54
|
-
};
|
|
55
|
-
}
|
|
56
40
|
if (typeof Math.trunc === 'undefined') {
|
|
57
41
|
Math.trunc = function (x) {
|
|
58
42
|
if (isNaN(x)) {
|
|
@@ -64,6 +48,22 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
64
48
|
return Math.ceil(x);
|
|
65
49
|
};
|
|
66
50
|
}
|
|
51
|
+
if (typeof Math.log10 === 'undefined') {
|
|
52
|
+
Math.log10 = function (x) {
|
|
53
|
+
return Math.log(x) * Math.LOG10E;
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
if (typeof Math.clz32 === 'undefined') {
|
|
57
|
+
Math.clz32 = function (log, LN2) {
|
|
58
|
+
return function (x) {
|
|
59
|
+
var asUint = x >>> 0;
|
|
60
|
+
if (asUint === 0) {
|
|
61
|
+
return 32;
|
|
62
|
+
}
|
|
63
|
+
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
64
|
+
};
|
|
65
|
+
}(Math.log, Math.LN2);
|
|
66
|
+
}
|
|
67
67
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
68
68
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
69
69
|
var subjectString = this.toString();
|
|
@@ -124,8 +124,8 @@ function asJsMapView() {
|
|
|
124
124
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
125
125
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
126
126
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
127
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
128
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
127
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
128
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
129
129
|
initMetadataForCompanion(Companion_3);
|
|
130
130
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
131
131
|
initMetadataForCompanion(Companion_4);
|
|
@@ -149,7 +149,7 @@ initMetadataForClass(asList$1, VOID, VOID, AbstractList, [AbstractList, RandomAc
|
|
|
149
149
|
initMetadataForInterface(AutoCloseable, 'AutoCloseable');
|
|
150
150
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
151
151
|
initMetadataForObject(Unit, 'Unit');
|
|
152
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
152
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
153
153
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
154
154
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
155
155
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -161,7 +161,7 @@ initMetadataForCompanion(Companion_5);
|
|
|
161
161
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
162
162
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
163
163
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
164
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
164
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
165
165
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
166
166
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
167
167
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|