@flock/wirespec 0.18.14 → 0.18.15
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/clikt-clikt-mordant.mjs +39 -39
- package/colormath-root-colormath.mjs +432 -432
- package/kotlin-kotlin-stdlib.mjs +20 -10
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-openapi-bindings.mjs +9842 -9842
- package/kotlin-rgxgen.mjs +1758 -1758
- package/kotlinx-io-kotlinx-io-core.mjs +404 -404
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1775 -1775
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1466 -1466
- package/mordant-mordant.mjs +1190 -1190
- package/package.json +1 -1
- package/wirespec-src-compiler-core.mjs +1 -1
- package/wirespec-src-compiler-emitters-java.mjs +182 -182
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +197 -133
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +147 -147
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-rust.mjs +68 -54
- package/wirespec-src-compiler-emitters-rust.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-scala.mjs +29 -29
- package/wirespec-src-compiler-emitters-typescript.mjs +81 -54
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +26 -26
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-ir.mjs +144 -134
- package/wirespec-src-compiler-ir.mjs.map +1 -1
- package/wirespec-src-converter-avro.mjs +479 -479
- package/wirespec-src-converter-openapi.mjs +320 -320
- package/wirespec-src-ide-lsp.mjs +1348 -1348
- package/wirespec-src-plugin-arguments.mjs +136 -136
- package/wirespec-src-plugin-cli.mjs +84 -84
- package/wirespec-src-plugin-npm.mjs +10 -10
- package/wirespec-src-tools-generator.mjs +2 -2
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -102,8 +102,8 @@ initMetadataForInterface(KtMap, 'Map');
|
|
|
102
102
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
103
103
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
104
104
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
105
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
106
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
105
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
106
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
107
107
|
initMetadataForCompanion(Companion_0);
|
|
108
108
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
109
109
|
initMetadataForCompanion(Companion_1);
|
|
@@ -123,7 +123,7 @@ initMetadataForObject(OtherLowercase, 'OtherLowercase');
|
|
|
123
123
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
124
124
|
initMetadataForObject(Unit, 'Unit');
|
|
125
125
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
126
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
126
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
|
|
127
127
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
128
128
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
129
129
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -136,7 +136,7 @@ initMetadataForCompanion(Companion_2);
|
|
|
136
136
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
137
137
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
138
138
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
139
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
139
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
140
140
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
141
141
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
142
142
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -1528,6 +1528,12 @@ function firstOrNull_1(_this__u8e3s4) {
|
|
|
1528
1528
|
}
|
|
1529
1529
|
return tmp;
|
|
1530
1530
|
}
|
|
1531
|
+
function first_1(_this__u8e3s4) {
|
|
1532
|
+
// Inline function 'kotlin.text.isEmpty' call
|
|
1533
|
+
if (charSequenceLength(_this__u8e3s4) === 0)
|
|
1534
|
+
throw NoSuchElementException_init_$Create$_0('Char sequence is empty.');
|
|
1535
|
+
return charSequenceGet(_this__u8e3s4, 0);
|
|
1536
|
+
}
|
|
1531
1537
|
function dropLast_0(_this__u8e3s4, n) {
|
|
1532
1538
|
// Inline function 'kotlin.require' call
|
|
1533
1539
|
if (!(n >= 0)) {
|
|
@@ -1536,12 +1542,6 @@ function dropLast_0(_this__u8e3s4, n) {
|
|
|
1536
1542
|
}
|
|
1537
1543
|
return take_1(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.length - n | 0, 0));
|
|
1538
1544
|
}
|
|
1539
|
-
function first_1(_this__u8e3s4) {
|
|
1540
|
-
// Inline function 'kotlin.text.isEmpty' call
|
|
1541
|
-
if (charSequenceLength(_this__u8e3s4) === 0)
|
|
1542
|
-
throw NoSuchElementException_init_$Create$_0('Char sequence is empty.');
|
|
1543
|
-
return charSequenceGet(_this__u8e3s4, 0);
|
|
1544
|
-
}
|
|
1545
1545
|
function drop_0(_this__u8e3s4, n) {
|
|
1546
1546
|
// Inline function 'kotlin.require' call
|
|
1547
1547
|
if (!(n >= 0)) {
|
|
@@ -7045,6 +7045,15 @@ function isDigit(_this__u8e3s4) {
|
|
|
7045
7045
|
}
|
|
7046
7046
|
return isDigitImpl(_this__u8e3s4);
|
|
7047
7047
|
}
|
|
7048
|
+
function isLetter(_this__u8e3s4) {
|
|
7049
|
+
if ((_Char___init__impl__6a9atx(97) <= _this__u8e3s4 ? _this__u8e3s4 <= _Char___init__impl__6a9atx(122) : false) || (_Char___init__impl__6a9atx(65) <= _this__u8e3s4 ? _this__u8e3s4 <= _Char___init__impl__6a9atx(90) : false)) {
|
|
7050
|
+
return true;
|
|
7051
|
+
}
|
|
7052
|
+
if (Char__compareTo_impl_ypi4mb(_this__u8e3s4, _Char___init__impl__6a9atx(128)) < 0) {
|
|
7053
|
+
return false;
|
|
7054
|
+
}
|
|
7055
|
+
return isLetterImpl(_this__u8e3s4);
|
|
7056
|
+
}
|
|
7048
7057
|
function isUpperCase(_this__u8e3s4) {
|
|
7049
7058
|
if (_Char___init__impl__6a9atx(65) <= _this__u8e3s4 ? _this__u8e3s4 <= _Char___init__impl__6a9atx(90) : false) {
|
|
7050
7059
|
return true;
|
|
@@ -13886,6 +13895,7 @@ export {
|
|
|
13886
13895
|
isBlank as isBlank1dvkhjjvox3p0,
|
|
13887
13896
|
isDigit as isDigit3mimrri4wkzop,
|
|
13888
13897
|
isLetterOrDigit as isLetterOrDigit2kuxd9e198haf,
|
|
13898
|
+
isLetter as isLettere1qnx5bysxbd,
|
|
13889
13899
|
isLowerCase as isLowerCase16nv9n55l9laa,
|
|
13890
13900
|
isUpperCase as isUpperCase16ivdixranflt,
|
|
13891
13901
|
isWhitespace as isWhitespace25occ8z1ed1s9,
|