git-digger 1.4.6 → 1.4.8

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.
@@ -277,7 +277,7 @@
277
277
  function addFormatStructureForTime(structure) {
278
278
  this.jw(structure);
279
279
  }
280
- setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
280
+ setMetadataFor(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', interfaceMeta, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
281
281
  function offsetHours$default(padding, $super) {
282
282
  padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
283
283
  var tmp;
@@ -330,7 +330,7 @@
330
330
  return tmp;
331
331
  }
332
332
  setMetadataFor(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', interfaceMeta, VOID, [WithUtcOffset]);
333
- setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithUtcOffset, WithDate]);
333
+ setMetadataFor(Builder, 'Builder', classMeta, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithDate, WithUtcOffset]);
334
334
  setMetadataFor(AbstractDateTimeFormat, 'AbstractDateTimeFormat', classMeta);
335
335
  setMetadataFor(DateTimeComponentsFormat, 'DateTimeComponentsFormat', classMeta, AbstractDateTimeFormat);
336
336
  setMetadataFor(TwoDigitNumber, 'TwoDigitNumber', classMeta);
package/kotlin/bin/digger CHANGED
File without changes
@@ -32,16 +32,16 @@ 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
35
  if (typeof Math.log10 === 'undefined') {
41
36
  Math.log10 = function (x) {
42
37
  return Math.log(x) * Math.LOG10E;
43
38
  };
44
39
  }
40
+ if (typeof Math.log2 === 'undefined') {
41
+ Math.log2 = function (x) {
42
+ return Math.log(x) * Math.LOG2E;
43
+ };
44
+ }
45
45
  if (typeof Math.clz32 === 'undefined') {
46
46
  Math.clz32 = function (log, LN2) {
47
47
  return function (x) {
@@ -3666,13 +3666,6 @@ if (typeof Math.imul === 'undefined') {
3666
3666
  function contains(_this__u8e3s4, element) {
3667
3667
  return indexOf(_this__u8e3s4, element) >= 0;
3668
3668
  }
3669
- function slice(_this__u8e3s4, indices) {
3670
- if (indices.y()) {
3671
- // Inline function 'kotlin.collections.listOf' call
3672
- return emptyList();
3673
- }
3674
- return asList(copyOfRange(_this__u8e3s4, indices.t8(), indices.u8() + 1 | 0));
3675
- }
3676
3669
  function contains_0(_this__u8e3s4, element) {
3677
3670
  return indexOf_0(_this__u8e3s4, element) >= 0;
3678
3671
  }
@@ -3850,6 +3843,13 @@ if (typeof Math.imul === 'undefined') {
3850
3843
  buffer.q7(postfix);
3851
3844
  return buffer;
3852
3845
  }
3846
+ function slice(_this__u8e3s4, indices) {
3847
+ if (indices.y()) {
3848
+ // Inline function 'kotlin.collections.listOf' call
3849
+ return emptyList();
3850
+ }
3851
+ return asList(copyOfRange(_this__u8e3s4, indices.t8(), indices.u8() + 1 | 0));
3852
+ }
3853
3853
  function lastOrNull(_this__u8e3s4) {
3854
3854
  var tmp;
3855
3855
  // Inline function 'kotlin.collections.isEmpty' call
@@ -6302,11 +6302,6 @@ if (typeof Math.imul === 'undefined') {
6302
6302
  sortArrayWith(_this__u8e3s4, comparator);
6303
6303
  }
6304
6304
  }
6305
- function copyOfRange(_this__u8e3s4, fromIndex, toIndex) {
6306
- Companion_instance_5.t1(fromIndex, toIndex, _this__u8e3s4.length);
6307
- // Inline function 'kotlin.js.asDynamic' call
6308
- return _this__u8e3s4.slice(fromIndex, toIndex);
6309
- }
6310
6305
  function copyOf_2(_this__u8e3s4, newSize) {
6311
6306
  // Inline function 'kotlin.require' call
6312
6307
  // Inline function 'kotlin.contracts.contract' call
@@ -6317,6 +6312,11 @@ if (typeof Math.imul === 'undefined') {
6317
6312
  }
6318
6313
  return arrayCopyResize(_this__u8e3s4, newSize, null);
6319
6314
  }
6315
+ function copyOfRange(_this__u8e3s4, fromIndex, toIndex) {
6316
+ Companion_instance_5.t1(fromIndex, toIndex, _this__u8e3s4.length);
6317
+ // Inline function 'kotlin.js.asDynamic' call
6318
+ return _this__u8e3s4.slice(fromIndex, toIndex);
6319
+ }
6320
6320
  function sort_0(_this__u8e3s4) {
6321
6321
  if (_this__u8e3s4.length > 1) {
6322
6322
  sortArray(_this__u8e3s4);