Merge branch 'odin-lang:master' into json-better-enum-support

This commit is contained in:
blob1807
2024-03-01 14:24:51 +10:00
committed by GitHub
60 changed files with 4247 additions and 2320 deletions
+3
View File
@@ -231,6 +231,9 @@ marshal_to_writer :: proc(w: io.Writer, v: any, opt: ^Marshal_Options) -> (err:
case runtime.Type_Info_Matrix:
return .Unsupported_Type
case runtime.Type_Info_Bit_Field:
return .Unsupported_Type
case runtime.Type_Info_Array:
opt_write_start(w, opt, '[') or_return
for i in 0..<info.count {