mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
@@ -419,7 +419,7 @@ unmarshal_object :: proc(p: ^Parser, v: any, end_token: Token_Kind) -> (err: Unm
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct_loop: for p.curr_token.kind != end_token {
|
struct_loop: for p.curr_token.kind != end_token {
|
||||||
key, _ := parse_object_key(p, p.allocator)
|
key := parse_object_key(p, p.allocator) or_return
|
||||||
defer delete(key, p.allocator)
|
defer delete(key, p.allocator)
|
||||||
|
|
||||||
unmarshal_expect_token(p, .Colon)
|
unmarshal_expect_token(p, .Colon)
|
||||||
|
|||||||
Reference in New Issue
Block a user