@solibo/solibo-sdk 1.0.25 → 1.0.26-SNAPSHOT
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.
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
function addFormatStructureForTime(structure) {
|
|
375
375
|
this.f5n(structure);
|
|
376
376
|
}
|
|
377
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
377
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
378
378
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
379
379
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
380
380
|
function set_fractionOfSecond(value) {
|
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -51,17 +51,6 @@ if (typeof Math.log10 === 'undefined') {
|
|
|
51
51
|
return Math.log(x) * Math.LOG10E;
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
|
-
if (typeof Math.trunc === 'undefined') {
|
|
55
|
-
Math.trunc = function (x) {
|
|
56
|
-
if (isNaN(x)) {
|
|
57
|
-
return NaN;
|
|
58
|
-
}
|
|
59
|
-
if (x > 0) {
|
|
60
|
-
return Math.floor(x);
|
|
61
|
-
}
|
|
62
|
-
return Math.ceil(x);
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
54
|
if (typeof Math.clz32 === 'undefined') {
|
|
66
55
|
Math.clz32 = function (log, LN2) {
|
|
67
56
|
return function (x) {
|
|
@@ -73,11 +62,16 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
73
62
|
};
|
|
74
63
|
}(Math.log, Math.LN2);
|
|
75
64
|
}
|
|
76
|
-
if (typeof
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
65
|
+
if (typeof Math.trunc === 'undefined') {
|
|
66
|
+
Math.trunc = function (x) {
|
|
67
|
+
if (isNaN(x)) {
|
|
68
|
+
return NaN;
|
|
69
|
+
}
|
|
70
|
+
if (x > 0) {
|
|
71
|
+
return Math.floor(x);
|
|
72
|
+
}
|
|
73
|
+
return Math.ceil(x);
|
|
74
|
+
};
|
|
81
75
|
}
|
|
82
76
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
83
77
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
@@ -90,6 +84,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
90
84
|
return lastIndex !== -1 && lastIndex === position;
|
|
91
85
|
}});
|
|
92
86
|
}
|
|
87
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
88
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
89
|
+
position = position || 0;
|
|
90
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
91
|
+
}});
|
|
92
|
+
}
|
|
93
93
|
//endregion
|
|
94
94
|
(function (factory) {
|
|
95
95
|
if (typeof define === 'function' && define.amd)
|
|
@@ -126,12 +126,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
126
126
|
initMetadataForInterface(Collection, 'Collection');
|
|
127
127
|
initMetadataForInterface(KtList, 'List', VOID, VOID, [Collection]);
|
|
128
128
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
129
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
129
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
130
130
|
initMetadataForInterface(KtMap, 'Map');
|
|
131
131
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
132
132
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
133
133
|
initMetadataForInterface(Entry, 'Entry');
|
|
134
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
134
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
135
135
|
initMetadataForCompanion(Companion_0);
|
|
136
136
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
137
137
|
initMetadataForCompanion(Companion_1);
|
|
@@ -153,7 +153,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
153
153
|
initMetadataForInterface(AutoCloseable, 'AutoCloseable');
|
|
154
154
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
155
155
|
initMetadataForObject(Unit, 'Unit');
|
|
156
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
156
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
157
157
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
158
158
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
159
159
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -165,7 +165,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
165
165
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
166
166
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
167
167
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
168
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
168
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
169
169
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
170
170
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
171
171
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|