@continuous-excellence/coupling-cli 1.1.811 → 1.1.813
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.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +3 -3
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ReversedViews.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +4 -4
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +6 -6
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ var AbstractMutableCollectionClass;
|
|
|
21
21
|
function AbstractMutableCollection() {
|
|
22
22
|
if (AbstractMutableCollectionClass === VOID) {
|
|
23
23
|
class $ extends AbstractCollection() {
|
|
24
|
-
static
|
|
24
|
+
static new_kotlin_collections_AbstractMutableCollection_1gqjpn_k$($box) {
|
|
25
25
|
return this.new_kotlin_collections_AbstractCollection_s1tlv0_k$($box);
|
|
26
26
|
}
|
|
27
27
|
remove_cedx0m_k$(element) {
|
|
@@ -65,7 +65,7 @@ function AbstractMutableCollection() {
|
|
|
65
65
|
checkIsMutable_jn1ih0_k$() {
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
|
-
initMetadataForClass($, 'AbstractMutableCollection', VOID, VOID, [
|
|
68
|
+
initMetadataForClass($, 'AbstractMutableCollection', VOID, VOID, [Collection(), MutableIterable()]);
|
|
69
69
|
AbstractMutableCollectionClass = $;
|
|
70
70
|
}
|
|
71
71
|
return AbstractMutableCollectionClass;
|
|
@@ -151,7 +151,7 @@ function AbstractMutableList() {
|
|
|
151
151
|
if (AbstractMutableListClass === VOID) {
|
|
152
152
|
class $ extends AbstractMutableCollection() {
|
|
153
153
|
static new_kotlin_collections_AbstractMutableList_ddn594_k$() {
|
|
154
|
-
var $this = this.
|
|
154
|
+
var $this = this.new_kotlin_collections_AbstractMutableCollection_1gqjpn_k$();
|
|
155
155
|
$this.modCount_1 = 0;
|
|
156
156
|
return $this;
|
|
157
157
|
}
|
|
@@ -16,7 +16,7 @@ function AbstractMutableSet() {
|
|
|
16
16
|
if (AbstractMutableSetClass === VOID) {
|
|
17
17
|
class $ extends AbstractMutableCollection() {
|
|
18
18
|
static new_kotlin_collections_AbstractMutableSet_hvoaax_k$($box) {
|
|
19
|
-
return this.
|
|
19
|
+
return this.new_kotlin_collections_AbstractMutableCollection_1gqjpn_k$($box);
|
|
20
20
|
}
|
|
21
21
|
equals(other) {
|
|
22
22
|
if (other === this)
|
|
@@ -53,7 +53,7 @@ var KtMutableSetClass;
|
|
|
53
53
|
function KtMutableSet() {
|
|
54
54
|
if (KtMutableSetClass === VOID) {
|
|
55
55
|
class $ {}
|
|
56
|
-
initMetadataForInterface($, 'MutableSet', VOID, VOID, [KtSet(),
|
|
56
|
+
initMetadataForInterface($, 'MutableSet', VOID, VOID, [KtSet(), Collection(), MutableIterable()]);
|
|
57
57
|
KtMutableSetClass = $;
|
|
58
58
|
}
|
|
59
59
|
return KtMutableSetClass;
|
|
@@ -62,7 +62,7 @@ var KtMutableListClass;
|
|
|
62
62
|
function KtMutableList() {
|
|
63
63
|
if (KtMutableListClass === VOID) {
|
|
64
64
|
class $ {}
|
|
65
|
-
initMetadataForInterface($, 'MutableList', VOID, VOID, [KtList(),
|
|
65
|
+
initMetadataForInterface($, 'MutableList', VOID, VOID, [KtList(), Collection(), MutableIterable()]);
|
|
66
66
|
KtMutableListClass = $;
|
|
67
67
|
}
|
|
68
68
|
return KtMutableListClass;
|
|
@@ -2,8 +2,8 @@ import { AbstractMutableSetthfi6jds1k2h as AbstractMutableSet } from './Abstract
|
|
|
2
2
|
import { UnsupportedOperationException2tkumpmhredt3 as UnsupportedOperationException } from '../exceptions.mjs';
|
|
3
3
|
import {
|
|
4
4
|
KtMutableSetwuwn7k5m570a as KtMutableSet,
|
|
5
|
-
MutableIterablez3x4ksk1fmrm as MutableIterable,
|
|
6
5
|
Collection1k04j3hzsbod0 as Collection,
|
|
6
|
+
MutableIterablez3x4ksk1fmrm as MutableIterable,
|
|
7
7
|
Entry2xmjmyutzoq3p as Entry,
|
|
8
8
|
} from './Collections.mjs';
|
|
9
9
|
import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../js/metadataUtils.mjs';
|
|
@@ -68,7 +68,7 @@ function HashMapValues() {
|
|
|
68
68
|
return new.target.new_kotlin_collections_HashMapValues_4lttdc_k$(backing);
|
|
69
69
|
}
|
|
70
70
|
static new_kotlin_collections_HashMapValues_4lttdc_k$(backing) {
|
|
71
|
-
var $this = this.
|
|
71
|
+
var $this = this.new_kotlin_collections_AbstractMutableCollection_1gqjpn_k$();
|
|
72
72
|
$this.backing_1 = backing;
|
|
73
73
|
return $this;
|
|
74
74
|
}
|
|
@@ -105,7 +105,7 @@ function HashMapValues() {
|
|
|
105
105
|
return this.backing_1.checkIsMutable_h5js84_k$();
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
-
initMetadataForClass($, 'HashMapValues', VOID, VOID, [
|
|
108
|
+
initMetadataForClass($, 'HashMapValues', VOID, VOID, [Collection(), MutableIterable()]);
|
|
109
109
|
HashMapValuesClass = $;
|
|
110
110
|
}
|
|
111
111
|
return HashMapValuesClass;
|
|
@@ -118,7 +118,7 @@ function HashMapValuesDefault() {
|
|
|
118
118
|
return new.target.new_kotlin_collections_HashMapValuesDefault_3yszgo_k$(backingMap);
|
|
119
119
|
}
|
|
120
120
|
static new_kotlin_collections_HashMapValuesDefault_3yszgo_k$(backingMap) {
|
|
121
|
-
var $this = this.
|
|
121
|
+
var $this = this.new_kotlin_collections_AbstractMutableCollection_1gqjpn_k$();
|
|
122
122
|
$this.backingMap_1 = backingMap;
|
|
123
123
|
return $this;
|
|
124
124
|
}
|
|
@@ -10,7 +10,7 @@ import { numberRangeToNumber25vse2rgp6rs8 as numberRangeToNumber } from '../js/r
|
|
|
10
10
|
//region block: pre-declaration
|
|
11
11
|
//endregion
|
|
12
12
|
function asReversed(_this__u8e3s4) {
|
|
13
|
-
return ReversedList().
|
|
13
|
+
return ReversedList().new_kotlin_collections_ReversedList_rbz3qk_k$(_this__u8e3s4);
|
|
14
14
|
}
|
|
15
15
|
function asReversed_0(_this__u8e3s4) {
|
|
16
16
|
return ReversedListReadOnly().new_kotlin_collections_ReversedListReadOnly_s1exex_k$(_this__u8e3s4);
|
|
@@ -55,9 +55,9 @@ function ReversedList() {
|
|
|
55
55
|
if (ReversedListClass === VOID) {
|
|
56
56
|
class $ extends AbstractMutableList() {
|
|
57
57
|
constructor(delegate) {
|
|
58
|
-
return new.target.
|
|
58
|
+
return new.target.new_kotlin_collections_ReversedList_rbz3qk_k$(delegate);
|
|
59
59
|
}
|
|
60
|
-
static
|
|
60
|
+
static new_kotlin_collections_ReversedList_rbz3qk_k$(delegate) {
|
|
61
61
|
var $this = this.new_kotlin_collections_AbstractMutableList_ddn594_k$();
|
|
62
62
|
$this.delegate_1 = delegate;
|
|
63
63
|
return $this;
|
|
@@ -373,7 +373,7 @@ function ValueCollection() {
|
|
|
373
373
|
if ($box === VOID)
|
|
374
374
|
$box = {};
|
|
375
375
|
$box.$this_1 = $outer;
|
|
376
|
-
return this.
|
|
376
|
+
return this.new_kotlin_collections_AbstractMutableCollection_1gqjpn_k$($box);
|
|
377
377
|
}
|
|
378
378
|
get_size_woubt6_k$() {
|
|
379
379
|
return this.$this_1._size_1;
|
|
@@ -52,9 +52,9 @@ function PhaseContent() {
|
|
|
52
52
|
if (PhaseContentClass === VOID) {
|
|
53
53
|
class $ {
|
|
54
54
|
constructor(phase, relation, interceptors) {
|
|
55
|
-
return new.target.
|
|
55
|
+
return new.target.new_io_ktor_util_pipeline_PhaseContent_6d9x0e_k$(phase, relation, interceptors);
|
|
56
56
|
}
|
|
57
|
-
static
|
|
57
|
+
static new_io_ktor_util_pipeline_PhaseContent_6d9x0e_k$(phase, relation, interceptors) {
|
|
58
58
|
Companion_getInstance();
|
|
59
59
|
var $this = createThis(this);
|
|
60
60
|
$this.phase_1 = phase;
|
|
@@ -66,7 +66,7 @@ function PhaseContent() {
|
|
|
66
66
|
static new_io_ktor_util_pipeline_PhaseContent_24bg4y_k$(phase, relation) {
|
|
67
67
|
Companion_getInstance();
|
|
68
68
|
var tmp = Companion_getInstance().SharedArrayList_1;
|
|
69
|
-
var $this = this.
|
|
69
|
+
var $this = this.new_io_ktor_util_pipeline_PhaseContent_6d9x0e_k$(phase, relation, isInterface(tmp, KtMutableList()) ? tmp : THROW_CCE());
|
|
70
70
|
// Inline function 'kotlin.check' call
|
|
71
71
|
if (!Companion_getInstance().SharedArrayList_1.isEmpty_y1axqb_k$()) {
|
|
72
72
|
var message = 'The shared empty array list has been modified';
|
|
@@ -86,7 +86,7 @@ function PhaseContent() {
|
|
|
86
86
|
}
|
|
87
87
|
this.interceptors_1.add_utx5q5_k$(interceptor);
|
|
88
88
|
}
|
|
89
|
-
|
|
89
|
+
addTo_h97ksk_k$(destination) {
|
|
90
90
|
var interceptors = this.interceptors_1;
|
|
91
91
|
if (destination instanceof ArrayList()) {
|
|
92
92
|
destination.ensureCapacity_wr7980_k$(destination.get_size_woubt6_k$() + interceptors.get_size_woubt6_k$() | 0);
|
|
@@ -188,7 +188,7 @@ function cacheInterceptors($this) {
|
|
|
188
188
|
tmp_2 = tmp1_elvis_lhs;
|
|
189
189
|
}
|
|
190
190
|
var phase = tmp_2;
|
|
191
|
-
phase.
|
|
191
|
+
phase.addTo_h97ksk_k$(destination);
|
|
192
192
|
}
|
|
193
193
|
while (!(phaseIndex_0 === last_0));
|
|
194
194
|
notSharedInterceptorsList($this, destination);
|
|
@@ -33,9 +33,9 @@ function IntTrie() {
|
|
|
33
33
|
if (IntTrieClass === VOID) {
|
|
34
34
|
class $ {
|
|
35
35
|
constructor(children, values) {
|
|
36
|
-
return new.target.
|
|
36
|
+
return new.target.new_com_github_ajalt_mordant_internal_gen_IntTrie_joc029_k$(children, values);
|
|
37
37
|
}
|
|
38
|
-
static
|
|
38
|
+
static new_com_github_ajalt_mordant_internal_gen_IntTrie_joc029_k$(children, values) {
|
|
39
39
|
var tmp;
|
|
40
40
|
if (values === VOID) {
|
|
41
41
|
// Inline function 'kotlin.collections.mutableSetOf' call
|
|
@@ -49,7 +49,7 @@ function IntTrie() {
|
|
|
49
49
|
$this.values_1 = values;
|
|
50
50
|
return $this;
|
|
51
51
|
}
|
|
52
|
-
static
|
|
52
|
+
static new_com_github_ajalt_mordant_internal_gen_IntTrie_oian7b_k$(children, values) {
|
|
53
53
|
var tmp;
|
|
54
54
|
if (values === VOID) {
|
|
55
55
|
// Inline function 'kotlin.collections.mutableSetOf' call
|
|
@@ -58,7 +58,7 @@ function IntTrie() {
|
|
|
58
58
|
tmp = values;
|
|
59
59
|
}
|
|
60
60
|
values = tmp;
|
|
61
|
-
return this.
|
|
61
|
+
return this.new_com_github_ajalt_mordant_internal_gen_IntTrie_joc029_k$(mutableMapOf(children.slice()), values);
|
|
62
62
|
}
|
|
63
63
|
toString() {
|
|
64
64
|
return 'IntTrie(children=' + toString(this.children_1) + ', values=' + toString(this.values_1) + ')';
|
|
@@ -88,7 +88,7 @@ function IntTrie() {
|
|
|
88
88
|
}
|
|
89
89
|
function buildSeqTrie() {
|
|
90
90
|
_init_properties_emojiseqtable_kt__lgtuwt();
|
|
91
|
-
var root = IntTrie().
|
|
91
|
+
var root = IntTrie().new_com_github_ajalt_mordant_internal_gen_IntTrie_oian7b_k$([]);
|
|
92
92
|
// Inline function 'kotlin.arrayOf' call
|
|
93
93
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
94
94
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -116,7 +116,7 @@ function buildSeqTrie() {
|
|
|
116
116
|
var value = tmp0.get_wei43m_k$(key);
|
|
117
117
|
var tmp;
|
|
118
118
|
if (value == null) {
|
|
119
|
-
var answer = IntTrie().
|
|
119
|
+
var answer = IntTrie().new_com_github_ajalt_mordant_internal_gen_IntTrie_oian7b_k$([]);
|
|
120
120
|
tmp0.put_4fpzoq_k$(key, answer);
|
|
121
121
|
tmp = answer;
|
|
122
122
|
} else {
|