Begin working on JSON record decoding

And we've hit a borrow panic 😍
This commit is contained in:
Ayaz Hafiz 2022-08-05 13:55:52 -05:00
parent 0d96f4fc7d
commit 29793fac32
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
6 changed files with 132 additions and 8 deletions

View file

@ -1417,10 +1417,11 @@ define_builtins! {
19 DECODE_BOOL: "bool"
20 DECODE_STRING: "string"
21 DECODE_LIST: "list"
22 DECODE_CUSTOM: "custom"
23 DECODE_DECODE_WITH: "decodeWith"
24 DECODE_FROM_BYTES_PARTIAL: "fromBytesPartial"
25 DECODE_FROM_BYTES: "fromBytes"
22 DECODE_RECORD: "record"
23 DECODE_CUSTOM: "custom"
24 DECODE_DECODE_WITH: "decodeWith"
25 DECODE_FROM_BYTES_PARTIAL: "fromBytesPartial"
26 DECODE_FROM_BYTES: "fromBytes"
}
13 JSON: "Json" => {
0 JSON_JSON: "Json"