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
/
src
/
docs_writer.cpp
Commit message (
Collapse
)
Author
Age
Files
Lines
*
Fix doc writer bug caused by using an iterator rather than a for loop
gingerBill
2024-08-14
1
-2
/
+14
|
*
Make doc writer use the old "Ordered Insertion" based `PtrMap`
gingerBill
2024-05-11
1
-17
/
+17
|
*
Minor changes
gingerBill
2024-04-26
1
-6
/
+5
|
*
Update doc-format for `#by_ptr` and `#no_broadcast` parameters
gingerBill
2024-03-21
1
-5
/
+7
|
*
Replace `gb_exit(1)` with `exit_with_errors()` where appropriate
gingerBill
2024-03-19
1
-1
/
+1
|
*
Serialize errors to make them sortable, deterministic, and generally more ↵
gingerBill
2024-03-19
1
-1
/
+1
|
|
|
|
control
*
Change hack a little
gingerBill
2024-02-22
1
-1
/
+1
|
*
Add backing type of a `bit_field` to the doc-format
gingerBill
2024-02-22
1
-0
/
+1
|
*
Add doc-format support for `bit_field`
gingerBill
2024-02-22
1
-1
/
+23
|
*
Add `sanitize_address` attribute to all normal packages
gingerBill
2023-09-21
1
-4
/
+2
|
*
Remove #relative slices; Replace with #relative multi-pointers
gingerBill
2023-08-05
1
-4
/
+4
|
*
Add debug messages to docs_writer.cpp
gingerBill
2023-05-22
1
-0
/
+15
|
*
Disable stable_type_cache for the time being
gingerBill
2023-05-22
1
-4
/
+4
|
*
Improve doc_writer.cpp performance
gingerBill
2023-05-22
1
-0
/
+11
|
*
Correct entity flag generation
gingerBill
2023-05-22
1
-7
/
+6
|
*
Inline `are_types_identical_unique_tuples` to improve `odin_doc_type` ↵
gingerBill
2023-05-22
1
-5
/
+36
|
|
|
|
performance
*
Fix typo
gingerBill
2023-03-21
1
-1
/
+1
|
*
Correctly handle end comment for doc generation
gingerBill
2023-03-21
1
-5
/
+7
|
*
Remove `auto_cast` procedure field flag
gingerBill
2023-01-16
1
-1
/
+0
|
|
|
|
Fixes #2285
*
Bring `PtrMap` inline with `StringMap`
gingerBill
2023-01-14
1
-2
/
+2
|
*
Minimize `StringMap` structure usage
gingerBill
2023-01-14
1
-2
/
+2
|
*
Make all maps use heap allocator implicitly
gingerBill
2023-01-03
1
-6
/
+5
|
*
`gb_internal` to docs and other auxiliary files
gingerBill
2022-12-18
1
-34
/
+34
|
*
Fix variable shadow in compiler
gingerBill
2022-12-09
1
-3
/
+3
|
*
Replace compiler for loops for the hash-table types to simplify code usage
gingerBill
2022-12-09
1
-19
/
+17
|
*
Add node data for union when using ↵
gingerBill
2022-09-27
1
-1
/
+1
|
|
|
|
`intrinsics.type_convert_variants_to_pointers`
*
Add `#soa` pointer type to aid with refactoring to `#soa` data types
gingerBill
2022-08-08
1
-0
/
+4
|
|
|
|
|
|
|
|
a: #soa[16]Foo p := &a[6] #assert(type_of(p) == #soa^#soa[16]Foo) p^.x = 123 p.x = 123
*
Merge functionality of `#maybe` with the standard 'union' functionality
gingerBill
2022-05-23
1
-1
/
+0
|
*
`union #shared_nil`
gingerBill
2022-03-24
1
-3
/
+5
|
|
|
|
This adds a feature to `union` which requires all the variants to have a `nil` value and on assign to the union, checks whether that value is `nil` or not. If the value is `nil`, the union will be `nil` (thus sharing the `nil` value)
*
Allow sysv and win64 calling conventions to be used on any platform on amd64
gingerBill
2022-02-16
1
-34
/
+1
|
*
Remove debug code
gingerBill
2022-01-27
1
-1
/
+0
|
*
Support built-in procedures for doc format
gingerBill
2022-01-27
1
-2
/
+21
|
*
Update doc format to allow for aliases
gingerBill
2022-01-26
1
-19
/
+14
|
*
Parse comments on enums fields
gingerBill
2022-01-24
1
-5
/
+6
|
*
Update CommentGroup parsing for struct types
gingerBill
2022-01-24
1
-0
/
+6
|
*
Add `.Private` information to doc-format
gingerBill
2022-01-19
1
-1
/
+4
|
*
Unify `are_types_identical_unique_tuples`
gingerBill
2022-01-19
1
-1
/
+1
|
*
Correct tuple name checking for doc writing
gingerBill
2022-01-19
1
-1
/
+1
|
*
Allow for entity grouping in structs and procedure signatures with the Odin ↵
gingerBill
2022-01-19
1
-4
/
+16
|
|
|
|
doc-format
*
Improve docs_writer.cpp
gingerBill
2022-01-17
1
-1
/
+1
|
*
Correct odin doc comment printing
gingerBill
2022-01-17
1
-2
/
+3
|
*
Support struct field tags in odin doc format
gingerBill
2022-01-04
1
-0
/
+9
|
*
Correct `odin doc` default parameter value `init_string` generation
gingerBill
2021-12-03
1
-2
/
+5
|
*
Improve usage of `file_id`
gingerBill
2021-11-15
1
-1
/
+1
|
*
Increase usage of `PtrMap`
gingerBill
2021-11-05
1
-27
/
+17
|
*
Update doc-format
gingerBill
2021-10-27
1
-0
/
+1
|
*
Add support for matrix type in doc format
gingerBill
2021-10-27
1
-0
/
+8
|
*
Update doc format for multi-pointers
gingerBill
2021-08-22
1
-0
/
+4
|
*
Remove unused code
gingerBill
2021-08-19
1
-2
/
+1
|
*
Add sanity casts for 32/64 bit correctness
gingerBill
2021-07-12
1
-1
/
+1
|
[next]