index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
core
/
encoding
/
json
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add `json:"name,omitempty"`
gingerBill
2024-04-10
2
-10
/
+60
*
Allow for comma-separate json names `json:"name,flag"`
gingerBill
2024-04-10
2
-1
/
+11
*
correct newly found vets
Laytan Laats
2024-04-03
2
-13
/
+12
*
Json: improved unmarshalling of `using _: T` fields.
Franz Höltermann
2024-03-27
1
-9
/
+41
*
Json: fields on structs like 'using _: T' will now have T's fields
Franz Höltermann
2024-03-26
1
-14
/
+27
*
Merge pull request #3215 from blob1807/json-better-enum-support
gingerBill
2024-03-06
1
-1
/
+15
|
\
|
*
Apply suggestions from code review
blob1807
2024-03-04
1
-2
/
+2
|
*
convert spaces to tabs
blob1807
2024-03-04
1
-1
/
+1
|
*
Return underlining value instead of panicing
blob1807
2024-03-04
1
-4
/
+6
|
*
changed to use reflect.enum_name_from_value_any
blob1807
2024-03-01
1
-34
/
+2
|
*
Merge branch 'odin-lang:master' into json-better-enum-support
blob1807
2024-03-01
1
-0
/
+3
|
|
\
|
*
|
add all inter types to switch
blob1807
2024-02-21
1
-3
/
+27
|
*
|
replace spaces with tabs
blob1807
2024-02-21
1
-19
/
+19
|
*
|
add missing comma
blob1807
2024-02-21
1
-1
/
+1
|
*
|
Add better support for Enums in json
blob1807
2024-02-21
1
-1
/
+21
|
*
|
Revert json union fix
blob1807
2024-02-21
1
-9
/
+0
|
*
|
Merge branch 'master' of https://github.com/blob1807/Odin
blob1807
2024-02-21
1
-1
/
+0
|
|
\
\
|
*
|
|
Fix bug https://github.com/odin-lang/Odin/issues/3173
blob1807
2024-02-21
1
-0
/
+9
*
|
|
|
Fix #3173
gingerBill
2024-03-06
1
-0
/
+5
*
|
|
|
Zero `intrinsics.alloca`
gingerBill
2024-03-06
1
-2
/
+5
*
|
|
|
Use `intrinsics.alloca` rather than `context.temp_allocator` in `json.unmarsh...
gingerBill
2024-03-06
1
-5
/
+8
*
|
|
|
Fix #3250
gingerBill
2024-03-06
3
-7
/
+15
|
|
_
|
/
|
/
|
|
*
|
|
Begin work adding `bit_field`
gingerBill
2024-02-22
1
-0
/
+3
|
|
/
|
/
|
*
|
remove return statement from case Type_Info_Enumerated_Array, as it causes ea...
Kay
2024-02-12
1
-1
/
+0
|
/
*
Replace `core:*` to `base:*` where appropriate
gingerBill
2024-01-28
2
-2
/
+2
*
Merge pull request #2912 from karl-zylinski/marshal-sort-maps-by-key-and-clon...
gingerBill
2024-01-22
2
-37
/
+121
|
\
|
*
Made sure temp guard for sorting map keys in json marshal code ignores temp a...
Karl Zylinski
2024-01-22
1
-3
/
+3
|
*
Cleanup of json.clone_value
Karl Zylinski
2023-11-01
1
-4
/
+2
|
*
Added temp allocator guard to json.marshal, in case we temp alloc when sortin...
Karl Zylinski
2023-11-01
1
-0
/
+3
|
*
Reversed order of sort_maps_by_key check in marshal.odin to make PR compariso...
Karl Zylinski
2023-11-01
1
-26
/
+26
|
*
Indentation fix.
Karl Zylinski
2023-11-01
1
-3
/
+3
|
*
JSON: Option to sort marshaled maps before outputting. Also added a json.clon...
Karl Zylinski
2023-11-01
2
-38
/
+121
*
|
Enforce naming the parameters with `builtin.quaternion` to reduce confusion
gingerBill
2024-01-05
1
-3
/
+3
*
|
encoding/json: try to unmarshal into union variants
Laytan Laats
2024-01-03
1
-10
/
+27
|
/
*
cleanup: remove unused import
Rickard Andersson
2023-10-02
1
-1
/
+0
*
fix: guard against empty key value in `parse_object_body`
Rickard Andersson
2023-10-02
1
-6
/
+10
*
docs: add note about checking for alloc error
Rickard Andersson
2023-10-02
1
-0
/
+2
*
fix: use `runtime.map_insert` to not overallocate
Rickard Andersson
2023-10-02
1
-6
/
+4
*
fix(json): return `.Out_Of_Memory` when out of memory on parse
Rickard Andersson
2023-10-02
1
-0
/
+6
*
Use `or_break` and `or_continue` where appropriate in the core library
gingerBill
2023-09-30
1
-5
/
+4
*
Fix bug with index increment in `unquote_string`
Abdelrahman Farid
2023-09-19
1
-1
/
+1
*
json.marshal: Don't output spaces if pretty=false
RLGingerBiscuit
2023-08-25
1
-6
/
+6
*
Remove #relative slices; Replace with #relative multi-pointers
gingerBill
2023-08-05
1
-1
/
+1
*
Replace `x in &y` Use `&v in y` syntax through core & vendor for `switch`/`fo...
gingerBill
2023-06-26
1
-5
/
+5
*
fix #2550 json encoding should use surrogate pairs per RFC7159
Laytan Laats
2023-05-22
2
-4
/
+13
*
Fix typo in marshal.odin
Ikko Eltociear Ashimine
2023-04-27
1
-2
/
+2
*
Convert indentation to tabs
jakubtomsu
2023-04-14
1
-6
/
+6
*
Handle unmarshalling to json.Value
jakubtomsu
2023-04-14
1
-0
/
+6
*
Fix for skip_alphanum in JSON tokenizer not checking if first character is no...
Karl Zylinski
2023-04-05
1
-1
/
+2
*
Typo
Jeroen van Rijn
2023-03-25
1
-1
/
+1
[next]