change field order

This commit is contained in:
Karl Seguin
2025-06-28 09:02:12 +08:00
parent c9936c2b7e
commit fd36606acc

View File

@@ -1860,8 +1860,8 @@ pub fn Env(comptime State: type, comptime WebApis: type) type {
pub fn UndefinedOr(comptime T: type) type {
return union(enum) {
value: T,
undefined: void,
value: T,
};
}