aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/json/unmarshal.odin
Commit message (Expand)AuthorAgeFilesLines
* Zero `intrinsics.alloca`gingerBill2024-03-061-2/+5
* Use `intrinsics.alloca` rather than `context.temp_allocator` in `json.unmarsh...gingerBill2024-03-061-5/+8
* Fix #3250gingerBill2024-03-061-0/+6
* remove return statement from case Type_Info_Enumerated_Array, as it causes ea...Kay2024-02-121-1/+0
* Replace `core:*` to `base:*` where appropriategingerBill2024-01-281-1/+1
* Enforce naming the parameters with `builtin.quaternion` to reduce confusiongingerBill2024-01-051-3/+3
* encoding/json: try to unmarshal into union variantsLaytan Laats2024-01-031-10/+27
* Replace `x in &y` Use `&v in y` syntax through core & vendor for `switch`/`fo...gingerBill2023-06-261-5/+5
* Convert indentation to tabsjakubtomsu2023-04-141-6/+6
* Handle unmarshalling to json.Valuejakubtomsu2023-04-141-0/+6
* Add `runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD` where appropriategingerBill2023-02-101-0/+2
* Correct json/unmarshal.odingingerBill2022-11-111-1/+1
* Correct reflection usage of mapsgingerBill2022-11-081-6/+3
* else statement to allow skipping unused struct fieldsMichael Kutowski2022-09-301-9/+7
* Correct json.unmarshal for `map`sgingerBill2022-09-211-2/+2
* Update json/unmarshal.odin for the new `runtime.__dynamic_map_set`gingerBill2022-09-171-8/+6
* Allow for ignored fields in struct for `json.unmarshal`gingerBill2022-09-141-1/+8
* Fix bug unmarshalling JSON with assertions disabledWilliam Roe2022-07-281-2/+2
* Merge functionality of `#maybe` with the standard 'union' functionalitygingerBill2022-05-231-1/+1
* Fix 'unmarsal' typoPhil H2021-12-051-25/+25
* Fix minor issue with unmarshal for booleansgingerBill2021-11-131-0/+1
* Improve reflect.Type_Info_Complex supportgingerBill2021-09-291-1/+15
* Add more support for complex typesgingerBill2021-09-291-10/+19
* Remove `fmt` dependencygingerBill2021-09-291-2/+1
* Improve `json.marshal` error handling for `io.Writer`; Add docs for the diffe...gingerBill2021-09-291-1/+1
* Improve MJSON handlinggingerBill2021-09-281-48/+60
* Support `json.Specification.MJSON`gingerBill2021-09-281-56/+34
* Make it clear that integers are parsed separately from floatsgingerBill2021-09-281-7/+6
* Allow for `union{T}` like types in `json.unmarshal`gingerBill2021-09-251-54/+61
* Add `json.unmarshal`gingerBill2021-09-251-0/+562