git-semver-tagger 1.9.26 → 1.9.27

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.
@@ -95,8 +95,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
95
95
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
96
96
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
97
97
  initMetadataForInterface(MutableIterable, 'MutableIterable');
98
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
99
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
98
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
99
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
100
100
  initMetadataForCompanion(Companion_0);
101
101
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
102
102
  initMetadataForCompanion(Companion_1);
@@ -114,7 +114,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
114
114
  initMetadataForInterface(Comparator, 'Comparator');
115
115
  initMetadataForObject(Unit, 'Unit');
116
116
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
117
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [Collection, MutableIterable]);
117
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [MutableIterable, Collection]);
118
118
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
119
119
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
120
120
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [KtMutableList]);
@@ -127,7 +127,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
127
127
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [KtMutableList, RandomAccess]);
128
128
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [KtMutableMap]);
129
129
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet]);
130
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable]);
130
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection]);
131
131
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet]);
132
132
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
133
133
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -9704,6 +9704,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
9704
9704
  padChar = padChar === VOID ? _Char___init__impl__6a9atx(32) : padChar;
9705
9705
  return toString_1(padStart_0(isCharSequence(_this__u8e3s4) ? _this__u8e3s4 : THROW_CCE(), length, padChar));
9706
9706
  }
9707
+ function removePrefix(_this__u8e3s4, prefix) {
9708
+ if (startsWith_2(_this__u8e3s4, prefix)) {
9709
+ return substring_0(_this__u8e3s4, charSequenceLength(prefix));
9710
+ }
9711
+ return _this__u8e3s4;
9712
+ }
9707
9713
  function startsWith_1(_this__u8e3s4, char, ignoreCase) {
9708
9714
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
9709
9715
  return charSequenceLength(_this__u8e3s4) > 0 && equals_1(charSequenceGet(_this__u8e3s4, 0), char, ignoreCase);
@@ -9925,6 +9931,26 @@ if (typeof String.prototype.endsWith === 'undefined') {
9925
9931
  while (inductionVariable < length);
9926
9932
  return true;
9927
9933
  }
9934
+ function startsWith_2(_this__u8e3s4, prefix, ignoreCase) {
9935
+ ignoreCase = ignoreCase === VOID ? false : ignoreCase;
9936
+ var tmp;
9937
+ var tmp_0;
9938
+ if (!ignoreCase) {
9939
+ tmp_0 = typeof _this__u8e3s4 === 'string';
9940
+ } else {
9941
+ tmp_0 = false;
9942
+ }
9943
+ if (tmp_0) {
9944
+ tmp = typeof prefix === 'string';
9945
+ } else {
9946
+ tmp = false;
9947
+ }
9948
+ if (tmp)
9949
+ return startsWith(_this__u8e3s4, prefix);
9950
+ else {
9951
+ return regionMatchesImpl(_this__u8e3s4, 0, prefix, 0, charSequenceLength(prefix), ignoreCase);
9952
+ }
9953
+ }
9928
9954
  function split_0(_this__u8e3s4, delimiter, ignoreCase, limit) {
9929
9955
  requireNonNegativeLimit(limit);
9930
9956
  var currentOffset = 0;
@@ -13640,7 +13666,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
13640
13666
  _.$_$.n1 = Regex_init_$Create$;
13641
13667
  _.$_$.o1 = StringBuilder_init_$Create$;
13642
13668
  _.$_$.p1 = StringBuilder_init_$Create$_0;
13643
- _.$_$.q1 = Exception_init_$Create$_0;
13669
+ _.$_$.q1 = Exception_init_$Init$_0;
13644
13670
  _.$_$.r1 = IllegalArgumentException_init_$Init$;
13645
13671
  _.$_$.s1 = IllegalArgumentException_init_$Init$_0;
13646
13672
  _.$_$.t1 = IllegalArgumentException_init_$Create$_0;
@@ -13915,81 +13941,83 @@ if (typeof String.prototype.endsWith === 'undefined') {
13915
13941
  _.$_$.cc = lastIndexOf;
13916
13942
  _.$_$.dc = last_3;
13917
13943
  _.$_$.ec = lineSequence;
13918
- _.$_$.fc = prependIndent;
13919
- _.$_$.gc = removeSuffix;
13920
- _.$_$.hc = repeat;
13921
- _.$_$.ic = replace;
13922
- _.$_$.jc = replace_0;
13923
- _.$_$.kc = single_2;
13924
- _.$_$.lc = slice_0;
13925
- _.$_$.mc = split;
13926
- _.$_$.nc = startsWith;
13927
- _.$_$.oc = startsWith_1;
13928
- _.$_$.pc = substringAfter;
13929
- _.$_$.qc = substringBefore;
13930
- _.$_$.rc = substringBefore_0;
13931
- _.$_$.sc = substring_0;
13932
- _.$_$.tc = substring;
13933
- _.$_$.uc = take_0;
13934
- _.$_$.vc = toBooleanStrictOrNull;
13935
- _.$_$.wc = toDoubleOrNull;
13936
- _.$_$.xc = toDouble;
13937
- _.$_$.yc = toIntOrNull;
13938
- _.$_$.zc = toInt;
13939
- _.$_$.ad = toInt_0;
13940
- _.$_$.bd = toLongOrNull;
13941
- _.$_$.cd = toUByte;
13942
- _.$_$.dd = toUInt;
13943
- _.$_$.ed = toULongOrNull;
13944
- _.$_$.fd = toULong;
13945
- _.$_$.gd = toUShort;
13946
- _.$_$.hd = trimIndent;
13947
- _.$_$.id = trimMargin;
13948
- _.$_$.jd = trimStart;
13949
- _.$_$.kd = trim;
13950
- _.$_$.ld = Duration;
13951
- _.$_$.md = Instant;
13952
- _.$_$.nd = Uuid;
13953
- _.$_$.od = Char;
13954
- _.$_$.pd = ClassCastException;
13955
- _.$_$.qd = Comparator;
13956
- _.$_$.rd = DeepRecursiveFunction;
13957
- _.$_$.sd = DeepRecursiveScope;
13958
- _.$_$.td = Enum;
13959
- _.$_$.ud = Exception;
13960
- _.$_$.vd = IllegalArgumentException;
13961
- _.$_$.wd = IllegalStateException;
13962
- _.$_$.xd = Long;
13963
- _.$_$.yd = Pair;
13964
- _.$_$.zd = Result;
13965
- _.$_$.ae = RuntimeException;
13966
- _.$_$.be = THROW_CCE;
13967
- _.$_$.ce = Triple;
13968
- _.$_$.de = UByteArray;
13969
- _.$_$.ee = UByte;
13970
- _.$_$.fe = UIntArray;
13971
- _.$_$.ge = UInt;
13972
- _.$_$.he = ULongArray;
13973
- _.$_$.ie = ULong;
13974
- _.$_$.je = UShortArray;
13975
- _.$_$.ke = UShort;
13976
- _.$_$.le = Unit;
13977
- _.$_$.me = addSuppressed;
13978
- _.$_$.ne = arrayOf;
13979
- _.$_$.oe = closeFinally;
13980
- _.$_$.pe = countTrailingZeroBits;
13981
- _.$_$.qe = createFailure;
13982
- _.$_$.re = ensureNotNull;
13983
- _.$_$.se = invoke;
13984
- _.$_$.te = isFinite;
13985
- _.$_$.ue = isFinite_0;
13986
- _.$_$.ve = lazy_0;
13987
- _.$_$.we = lazy;
13988
- _.$_$.xe = noWhenBranchMatchedException;
13989
- _.$_$.ye = plus_3;
13990
- _.$_$.ze = toList_3;
13991
- _.$_$.af = toString_0;
13992
- _.$_$.bf = to;
13944
+ _.$_$.fc = lines;
13945
+ _.$_$.gc = prependIndent;
13946
+ _.$_$.hc = removePrefix;
13947
+ _.$_$.ic = removeSuffix;
13948
+ _.$_$.jc = repeat;
13949
+ _.$_$.kc = replace;
13950
+ _.$_$.lc = replace_0;
13951
+ _.$_$.mc = single_2;
13952
+ _.$_$.nc = slice_0;
13953
+ _.$_$.oc = split;
13954
+ _.$_$.pc = startsWith;
13955
+ _.$_$.qc = startsWith_1;
13956
+ _.$_$.rc = substringAfter;
13957
+ _.$_$.sc = substringBefore;
13958
+ _.$_$.tc = substringBefore_0;
13959
+ _.$_$.uc = substring_0;
13960
+ _.$_$.vc = substring;
13961
+ _.$_$.wc = take_0;
13962
+ _.$_$.xc = toBooleanStrictOrNull;
13963
+ _.$_$.yc = toDoubleOrNull;
13964
+ _.$_$.zc = toDouble;
13965
+ _.$_$.ad = toIntOrNull;
13966
+ _.$_$.bd = toInt;
13967
+ _.$_$.cd = toInt_0;
13968
+ _.$_$.dd = toLongOrNull;
13969
+ _.$_$.ed = toUByte;
13970
+ _.$_$.fd = toUInt;
13971
+ _.$_$.gd = toULongOrNull;
13972
+ _.$_$.hd = toULong;
13973
+ _.$_$.id = toUShort;
13974
+ _.$_$.jd = trimIndent;
13975
+ _.$_$.kd = trimMargin;
13976
+ _.$_$.ld = trimStart;
13977
+ _.$_$.md = trim;
13978
+ _.$_$.nd = Duration;
13979
+ _.$_$.od = Instant;
13980
+ _.$_$.pd = Uuid;
13981
+ _.$_$.qd = Char;
13982
+ _.$_$.rd = ClassCastException;
13983
+ _.$_$.sd = Comparator;
13984
+ _.$_$.td = DeepRecursiveFunction;
13985
+ _.$_$.ud = DeepRecursiveScope;
13986
+ _.$_$.vd = Enum;
13987
+ _.$_$.wd = Exception;
13988
+ _.$_$.xd = IllegalArgumentException;
13989
+ _.$_$.yd = IllegalStateException;
13990
+ _.$_$.zd = Long;
13991
+ _.$_$.ae = Pair;
13992
+ _.$_$.be = Result;
13993
+ _.$_$.ce = RuntimeException;
13994
+ _.$_$.de = THROW_CCE;
13995
+ _.$_$.ee = Triple;
13996
+ _.$_$.fe = UByteArray;
13997
+ _.$_$.ge = UByte;
13998
+ _.$_$.he = UIntArray;
13999
+ _.$_$.ie = UInt;
14000
+ _.$_$.je = ULongArray;
14001
+ _.$_$.ke = ULong;
14002
+ _.$_$.le = UShortArray;
14003
+ _.$_$.me = UShort;
14004
+ _.$_$.ne = Unit;
14005
+ _.$_$.oe = addSuppressed;
14006
+ _.$_$.pe = arrayOf;
14007
+ _.$_$.qe = closeFinally;
14008
+ _.$_$.re = countTrailingZeroBits;
14009
+ _.$_$.se = createFailure;
14010
+ _.$_$.te = ensureNotNull;
14011
+ _.$_$.ue = invoke;
14012
+ _.$_$.ve = isFinite;
14013
+ _.$_$.we = isFinite_0;
14014
+ _.$_$.xe = lazy_0;
14015
+ _.$_$.ye = lazy;
14016
+ _.$_$.ze = noWhenBranchMatchedException;
14017
+ _.$_$.af = plus_3;
14018
+ _.$_$.bf = toList_3;
14019
+ _.$_$.cf = toString_0;
14020
+ _.$_$.df = to;
13993
14021
  //endregion
13994
14022
  return _;
13995
14023
  }(module.exports));