@flock/wirespec 0.18.0-RC.1 → 0.18.1-RC.3
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/arrow-arrow-atomic.mjs +12 -12
- package/arrow-arrow-core.mjs +152 -158
- package/arrow-arrow-core.mjs.map +1 -1
- package/clikt-clikt-mordant.mjs +80 -80
- package/clikt-clikt.mjs +1442 -1442
- package/clikt-clikt.mjs.map +1 -1
- package/colormath-root-colormath.mjs +439 -439
- package/kotlin-kotlin-stdlib.mjs +1072 -1136
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-openapi-bindings.mjs +4857 -4857
- package/kotlin-rgxgen.mjs +1793 -1793
- package/kotlinx-io-kotlinx-io-core.mjs +415 -415
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1752 -1752
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1348 -1356
- package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +1 -1
- package/mordant-mordant.mjs +1303 -1311
- package/mordant-mordant.mjs.map +1 -1
- package/package.json +1 -1
- package/wirespec-fetch.mjs +13 -19
- package/wirespec-src-compiler-core.mjs +1526 -1526
- package/wirespec-src-compiler-emitters-java.mjs +477 -451
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +458 -453
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +419 -418
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-rust.mjs +939 -725
- package/wirespec-src-compiler-emitters-rust.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-scala.mjs +225 -233
- package/wirespec-src-compiler-emitters-scala.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-typescript.mjs +524 -555
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +81 -81
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-ir.mjs +3738 -3708
- package/wirespec-src-compiler-ir.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +418 -418
- package/wirespec-src-converter-avro.mjs +506 -506
- package/wirespec-src-converter-openapi.mjs +684 -684
- package/wirespec-src-plugin-arguments.mjs +181 -181
- package/wirespec-src-plugin-cli.mjs +106 -106
- package/wirespec-src-plugin-npm.mjs +36 -36
- package/wirespec-src-tools-generator.mjs +34 -34
package/arrow-arrow-atomic.mjs
CHANGED
|
@@ -12,26 +12,26 @@ function toInt($this, _this__u8e3s4) {
|
|
|
12
12
|
return _this__u8e3s4 ? 1 : 0;
|
|
13
13
|
}
|
|
14
14
|
function AtomicBoolean(value) {
|
|
15
|
-
this.
|
|
15
|
+
this.hl_1 = new AtomicInt(toInt(this, value));
|
|
16
16
|
}
|
|
17
|
-
protoOf(AtomicBoolean).
|
|
18
|
-
return !(get_value(this.
|
|
17
|
+
protoOf(AtomicBoolean).l1 = function () {
|
|
18
|
+
return !(get_value(this.hl_1) === 0);
|
|
19
19
|
};
|
|
20
|
-
protoOf(AtomicBoolean).
|
|
21
|
-
return this.
|
|
20
|
+
protoOf(AtomicBoolean).il = function (value) {
|
|
21
|
+
return this.hl_1.kl(toInt(this, value)) === 1;
|
|
22
22
|
};
|
|
23
23
|
function get_value(_this__u8e3s4) {
|
|
24
|
-
return _this__u8e3s4.
|
|
24
|
+
return _this__u8e3s4.ll();
|
|
25
25
|
}
|
|
26
26
|
function AtomicInt(initialValue) {
|
|
27
|
-
this.
|
|
27
|
+
this.jl_1 = initialValue;
|
|
28
28
|
}
|
|
29
|
-
protoOf(AtomicInt).
|
|
30
|
-
return this.
|
|
29
|
+
protoOf(AtomicInt).ll = function () {
|
|
30
|
+
return this.jl_1;
|
|
31
31
|
};
|
|
32
|
-
protoOf(AtomicInt).
|
|
33
|
-
var current = this.
|
|
34
|
-
this.
|
|
32
|
+
protoOf(AtomicInt).kl = function (value) {
|
|
33
|
+
var current = this.jl_1;
|
|
34
|
+
this.jl_1 = value;
|
|
35
35
|
return current;
|
|
36
36
|
};
|
|
37
37
|
//region block: exports
|