Files
Odin/core
Franz Höltermann a422aba578 Json: improved unmarshalling of using _: T fields.
`using _: T` fields will now have their members unmarshalled to their
parent types reflecting the new behaviour of json.marshall.

Example:
```go
A :: struct {
    using _: B,
}

B :: struct {
    field: string,
}

data := `{"field": "Hello World"}`

a: A
json.unmarshal_string(data, &a)
```
2024-03-27 15:46:44 +01:00
..
2024-03-24 13:46:26 +00:00
2024-01-17 13:37:06 +01:00
2024-02-06 17:22:13 +00:00
2024-03-19 21:05:23 +00:00
2024-03-24 13:46:26 +00:00
2024-03-24 13:33:30 +00:00
2024-03-13 15:29:02 +00:00
2024-02-22 15:01:55 +00:00
2024-03-21 11:59:45 +00:00
2024-03-19 21:05:23 +00:00
2024-02-08 15:15:16 +00:00
2024-03-26 11:20:05 +10:00