@solibo/solibo-sdk 1.1.113 → 1.1.114

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.o1i(structure);
363
363
  }
364
- initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
364
+ initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
365
365
  initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
366
366
  initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
367
367
  function set_fractionOfSecond(value) {
@@ -37,6 +37,17 @@ 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
+ }
40
51
  if (typeof Math.trunc === 'undefined') {
41
52
  Math.trunc = function (x) {
42
53
  if (isNaN(x)) {
@@ -53,17 +64,6 @@ if (typeof Math.log10 === 'undefined') {
53
64
  return Math.log(x) * Math.LOG10E;
54
65
  };
55
66
  }
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();
@@ -127,8 +127,8 @@ initMetadataForInterface(MutableIterable, 'MutableIterable');
127
127
  function asJsArrayView() {
128
128
  return createJsArrayViewFrom(this);
129
129
  }
130
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
131
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
130
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
131
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
132
132
  initMetadataForCompanion(Companion_4);
133
133
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
134
134
  initMetadataForCompanion(Companion_5);
@@ -152,7 +152,7 @@ initMetadataForClass(asList$1, VOID, VOID, AbstractList, [RandomAccess]);
152
152
  initMetadataForInterface(AutoCloseable, 'AutoCloseable');
153
153
  initMetadataForInterface(Comparator, 'Comparator');
154
154
  initMetadataForObject(Unit, 'Unit');
155
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [MutableIterable, Collection]);
155
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [Collection, MutableIterable]);
156
156
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
157
157
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
158
158
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [KtMutableList]);
@@ -164,7 +164,7 @@ initMetadataForCompanion(Companion_6);
164
164
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [KtMutableList, RandomAccess]);
165
165
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [KtMutableMap]);
166
166
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet]);
167
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection]);
167
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable]);
168
168
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet]);
169
169
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
170
170
  initMetadataForClass(HashMapKeysDefault$iterator$1);