Files
Odin/core
korvahkh a7a6ff8c69 encoding/json: Fix struct marshal() emitting comma after omitted field
Previously:
```odin
package main

import "core:fmt"
import "core:encoding/json"

T :: struct {
	a: string `json:",omitempty"`,
	b: string,
}

main :: proc() {
	data, _ := json.marshal(T{b = "foo"})
	fmt.println(string(data))
}
```
would output:
```
{,"b":"foo"}
```

which is not correct.

Also cleaned up some whitespace while I'm at it.
2024-05-27 16:59:46 -05:00
..
2024-04-25 22:04:40 +02:00
2024-05-24 13:58:30 +02:00
2024-05-02 09:27:46 +02:00
2024-05-18 19:41:07 +02:00
2024-05-02 09:27:46 +02:00
2024-04-18 10:12:42 +02:00
2024-04-19 10:42:09 +02:00
2024-02-08 15:15:16 +00:00
2024-05-11 19:25:35 +02:00
2024-05-16 16:30:45 +01:00
2024-05-10 09:04:52 +02:00
2024-05-24 17:21:00 +01:00
2024-05-23 23:50:26 +02:00
2024-04-06 16:59:02 +01:00