aboutsummaryrefslogtreecommitdiff
path: root/src/api/schema.zig
diff options
context:
space:
mode:
authorGravatar Dylan Conway <35280289+dylan-conway@users.noreply.github.com> 2023-06-21 23:38:18 -0700
committerGravatar GitHub <noreply@github.com> 2023-06-21 23:38:18 -0700
commit5fa13625a1ca0ea1a3a1c5bb86d0880dcfac349f (patch)
tree97f669a178e60772038751d690c3e298a63557b2 /src/api/schema.zig
parentbfb322d618a3f0e9618d311ae69016fe7a08e771 (diff)
downloadbun-5fa13625a1ca0ea1a3a1c5bb86d0880dcfac349f.tar.gz
bun-5fa13625a1ca0ea1a3a1c5bb86d0880dcfac349f.tar.zst
bun-5fa13625a1ca0ea1a3a1c5bb86d0880dcfac349f.zip
upgrade zig to `v0.11.0-dev.3737+9eb008717` (#3374)
* progress * finish `@memset/@memcpy` update * Update build.zig * change `@enumToInt` to `@intFromEnum` and friends * update zig versions * it was 1 * add link to issue * add `compileError` reminder * fix merge * format * upgrade to llvm 16 * Revert "upgrade to llvm 16" This reverts commit cc930ceb1c5b4db9614a7638596948f704544ab8. --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/api/schema.zig')
-rw-r--r--src/api/schema.zig46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/api/schema.zig b/src/api/schema.zig
index 227d1296b..1012e6051 100644
--- a/src/api/schema.zig
+++ b/src/api/schema.zig
@@ -201,7 +201,7 @@ pub fn Writer(comptime WritableStream: type) type {
}
pub inline fn writeEnum(this: *Self, val: anytype) !void {
- try this.writeInt(@enumToInt(val));
+ try this.writeInt(@intFromEnum(val));
}
pub fn writeValue(this: *Self, comptime SliceType: type, slice: SliceType) !void {
@@ -896,9 +896,9 @@ pub const Api = struct {
try writer.writeValue(@TypeOf(this.factory), this.factory);
try writer.writeEnum(this.runtime);
try writer.writeValue(@TypeOf(this.fragment), this.fragment);
- try writer.writeInt(@as(u8, @boolToInt(this.development)));
+ try writer.writeInt(@as(u8, @intFromBool(this.development)));
try writer.writeValue(@TypeOf(this.import_source), this.import_source);
- try writer.writeInt(@as(u8, @boolToInt(this.react_fast_refresh)));
+ try writer.writeInt(@as(u8, @intFromBool(this.react_fast_refresh)));
}
};
@@ -1166,7 +1166,7 @@ pub const Api = struct {
pub fn encode(this: *const @This(), writer: anytype) anyerror!void {
try writer.writeEnum(this.kind);
try writer.writeValue(@TypeOf(this.path), this.path);
- try writer.writeInt(@as(u8, @boolToInt(this.dynamic)));
+ try writer.writeInt(@as(u8, @intFromBool(this.dynamic)));
}
};
@@ -1405,7 +1405,7 @@ pub const Api = struct {
}
if (this.development) |development| {
try writer.writeFieldID(5);
- try writer.writeInt(@as(u8, @boolToInt(development)));
+ try writer.writeInt(@as(u8, @intFromBool(development)));
}
if (this.client_css_in_js) |client_css_in_js| {
try writer.writeFieldID(6);
@@ -1579,7 +1579,7 @@ pub const Api = struct {
pub fn encode(this: *const @This(), writer: anytype) anyerror!void {
try writer.writeValue(@TypeOf(this.package), this.package);
try writer.writeValue(@TypeOf(this.display_name), this.display_name);
- try writer.writeInt(@as(u8, @boolToInt(this.development)));
+ try writer.writeInt(@as(u8, @intFromBool(this.development)));
try writer.writeValue(@TypeOf(this.entry_points), this.entry_points);
try writer.writeEnum(this.client_css_in_js);
try writer.writeValue(@TypeOf(this.override_modules), this.override_modules);
@@ -1887,7 +1887,7 @@ pub const Api = struct {
}
if (this.preserve_symlinks) |preserve_symlinks| {
try writer.writeFieldID(7);
- try writer.writeInt(@as(u8, @boolToInt(preserve_symlinks)));
+ try writer.writeInt(@as(u8, @intFromBool(preserve_symlinks)));
}
if (this.entry_points) |entry_points| {
try writer.writeFieldID(8);
@@ -1895,7 +1895,7 @@ pub const Api = struct {
}
if (this.write) |write| {
try writer.writeFieldID(9);
- try writer.writeInt(@as(u8, @boolToInt(write)));
+ try writer.writeInt(@as(u8, @intFromBool(write)));
}
if (this.inject) |inject| {
try writer.writeFieldID(10);
@@ -1923,7 +1923,7 @@ pub const Api = struct {
}
if (this.serve) |serve| {
try writer.writeFieldID(16);
- try writer.writeInt(@as(u8, @boolToInt(serve)));
+ try writer.writeInt(@as(u8, @intFromBool(serve)));
}
if (this.extension_order) |extension_order| {
try writer.writeFieldID(17);
@@ -1931,7 +1931,7 @@ pub const Api = struct {
}
if (this.generate_node_module_bundle) |generate_node_module_bundle| {
try writer.writeFieldID(18);
- try writer.writeInt(@as(u8, @boolToInt(generate_node_module_bundle)));
+ try writer.writeInt(@as(u8, @intFromBool(generate_node_module_bundle)));
}
if (this.node_modules_bundle_path) |node_modules_bundle_path| {
try writer.writeFieldID(19);
@@ -1951,11 +1951,11 @@ pub const Api = struct {
}
if (this.no_summary) |no_summary| {
try writer.writeFieldID(23);
- try writer.writeInt(@as(u8, @boolToInt(no_summary)));
+ try writer.writeInt(@as(u8, @intFromBool(no_summary)));
}
if (this.disable_hmr) |disable_hmr| {
try writer.writeFieldID(24);
- try writer.writeInt(@as(u8, @boolToInt(disable_hmr)));
+ try writer.writeInt(@as(u8, @intFromBool(disable_hmr)));
}
if (this.port) |port| {
try writer.writeFieldID(25);
@@ -2427,7 +2427,7 @@ pub const Api = struct {
}
if (this.build) |build| {
try writer.writeFieldID(2);
- try writer.writeInt(@as(u8, @boolToInt(build)));
+ try writer.writeInt(@as(u8, @intFromBool(build)));
}
try writer.endMessage();
}
@@ -2995,35 +2995,35 @@ pub const Api = struct {
}
if (this.dry_run) |dry_run| {
try writer.writeFieldID(6);
- try writer.writeInt(@as(u8, @boolToInt(dry_run)));
+ try writer.writeInt(@as(u8, @intFromBool(dry_run)));
}
if (this.force) |force| {
try writer.writeFieldID(7);
- try writer.writeInt(@as(u8, @boolToInt(force)));
+ try writer.writeInt(@as(u8, @intFromBool(force)));
}
if (this.save_dev) |save_dev| {
try writer.writeFieldID(8);
- try writer.writeInt(@as(u8, @boolToInt(save_dev)));
+ try writer.writeInt(@as(u8, @intFromBool(save_dev)));
}
if (this.save_optional) |save_optional| {
try writer.writeFieldID(9);
- try writer.writeInt(@as(u8, @boolToInt(save_optional)));
+ try writer.writeInt(@as(u8, @intFromBool(save_optional)));
}
if (this.save_peer) |save_peer| {
try writer.writeFieldID(10);
- try writer.writeInt(@as(u8, @boolToInt(save_peer)));
+ try writer.writeInt(@as(u8, @intFromBool(save_peer)));
}
if (this.save_lockfile) |save_lockfile| {
try writer.writeFieldID(11);
- try writer.writeInt(@as(u8, @boolToInt(save_lockfile)));
+ try writer.writeInt(@as(u8, @intFromBool(save_lockfile)));
}
if (this.production) |production| {
try writer.writeFieldID(12);
- try writer.writeInt(@as(u8, @boolToInt(production)));
+ try writer.writeInt(@as(u8, @intFromBool(production)));
}
if (this.save_yarn_lockfile) |save_yarn_lockfile| {
try writer.writeFieldID(13);
- try writer.writeInt(@as(u8, @boolToInt(save_yarn_lockfile)));
+ try writer.writeInt(@as(u8, @intFromBool(save_yarn_lockfile)));
}
if (this.native_bin_links) |native_bin_links| {
try writer.writeFieldID(14);
@@ -3031,11 +3031,11 @@ pub const Api = struct {
}
if (this.disable_cache) |disable_cache| {
try writer.writeFieldID(15);
- try writer.writeInt(@as(u8, @boolToInt(disable_cache)));
+ try writer.writeInt(@as(u8, @intFromBool(disable_cache)));
}
if (this.disable_manifest_cache) |disable_manifest_cache| {
try writer.writeFieldID(16);
- try writer.writeInt(@as(u8, @boolToInt(disable_manifest_cache)));
+ try writer.writeInt(@as(u8, @intFromBool(disable_manifest_cache)));
}
if (this.global_dir) |global_dir| {
try writer.writeFieldID(17);