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
/
parser.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Check if directory exists with the same target executable name when building ...
gingerBill
2022-02-28
1
-0
/
+16
*
Correct `ExactValue_Pointer`
gingerBill
2022-02-22
1
-63
/
+0
*
Simplify `parse_binary_expr`
gingerBill
2022-02-22
1
-48
/
+109
*
Minimize memory usage by having an arena per thread rather than an arena per ...
gingerBill
2022-02-18
1
-6
/
+6
*
Merge branch 'master' into directx-packages
gingerBill
2022-02-16
1
-0
/
+6
|
\
|
*
Allow sysv and win64 calling conventions to be used on any platform on amd64
gingerBill
2022-02-16
1
-0
/
+6
*
|
Add `#subtype` struct field prefix, required to have a COM interface hierarchy
gingerBill
2022-02-16
1
-1
/
+3
|
/
*
Correct `#sparse` usage and error messages
gingerBill
2022-02-05
1
-0
/
+16
*
Rename `#partial[Enum]Type` to `#sparse[Enum]Type` for non-contiguous enum fi...
gingerBill
2022-02-05
1
-1
/
+1
*
Minor sanity clean up
gingerBill
2022-02-02
1
-0
/
+1
*
Add `//+private file` to complement `//+private` (`//+private package`)
gingerBill
2022-02-02
1
-2
/
+10
*
Correct false positive check in `check_unique_package_names`
gingerBill
2022-01-31
1
-0
/
+5
*
Add `#no_type_assert` and `#type_assert` to disable implicit type assertions ...
gingerBill
2022-01-27
1
-0
/
+36
*
Handle line comment better
gingerBill
2022-01-24
1
-5
/
+15
*
Parse comments on enums fields
gingerBill
2022-01-24
1
-1
/
+41
*
Update CommentGroup parsing for struct types
gingerBill
2022-01-24
1
-1
/
+1
*
Correct package docs parsing
gingerBill
2022-01-17
1
-0
/
+9
*
Fix #1381
gingerBill
2022-01-02
1
-0
/
+9
*
Improve usage of `file_id`
gingerBill
2021-11-15
1
-6
/
+6
*
Begin minimizing `Ast` size
gingerBill
2021-11-14
1
-8
/
+12
*
Merge branch 'master' into new-matrix-type
gingerBill
2021-10-23
1
-2
/
+4
|
\
|
*
Allow parsing for `[^]T{}` to improve error messages
gingerBill
2021-10-23
1
-0
/
+3
|
*
Rename `-ignore-lazy` to `-internal-ignore-lazy`
gingerBill
2021-10-23
1
-2
/
+1
*
|
Support matrix literals
gingerBill
2021-10-20
1
-0
/
+1
*
|
Change syntax for matrices to `matrix[R, C]T`
gingerBill
2021-10-19
1
-18
/
+19
*
|
Begin work on matrix type
gingerBill
2021-10-18
1
-1
/
+53
|
/
*
Copying file contents rather than memory mapping
gingerBill
2021-10-12
1
-2
/
+1
*
Minor simplification to `#assert` and `#panic` parsing
gingerBill
2021-09-23
1
-6
/
+1
*
Simplify directive parsing for expressions
gingerBill
2021-09-23
1
-26
/
+1
*
Force file copy on `odin strip-semicolon`
gingerBill
2021-09-18
1
-1
/
+2
*
Make `permanent_allocator()` thread local
gingerBill
2021-09-13
1
-3
/
+0
*
Replace many uses of `heap_allocator()` with `permanent_allocator()`
gingerBill
2021-09-13
1
-6
/
+4
*
Add `-strict-style-init-only`
gingerBill
2021-09-09
1
-0
/
+2
*
Add calling convention `"system"` which is an alias for `"stdcall"` on Window...
gingerBill
2021-09-08
1
-0
/
+6
*
Strip semicolons; Make `odin strip-semicolon` replace `..` with `..=` if used...
gingerBill
2021-09-06
1
-0
/
+4
*
Strip semicolon if followed by a `}` or `)` on the same line
gingerBill
2021-08-31
1
-0
/
+12
*
Correct parsing rules for `#assert` directives for semicolons
gingerBill
2021-08-31
1
-32
/
+12
*
Remove dead code and add debug messages
gingerBill
2021-08-31
1
-25
/
+8
*
Add semicolon stripping command: `odin strip-semicolon`, has the same paramet...
gingerBill
2021-08-31
1
-6
/
+13
*
Make `-insert-semicolon` the default now
gingerBill
2021-08-31
1
-92
/
+22
*
Disable local mutex for the time being.
gingerBill
2021-08-26
1
-1
/
+2
*
Use local mutex for each `AstFile.arena`
gingerBill
2021-08-26
1
-1
/
+2
*
Unify thread pool logic across the rest of the compiler, using a global threa...
gingerBill
2021-08-26
1
-32
/
+37
*
Change the implementation of `Arena` to use virtual memory, and remove the ol...
gingerBill
2021-08-26
1
-3
/
+2
*
Simplify logic for `parse_binary_expr`
gingerBill
2021-08-25
1
-16
/
+17
*
Remove the old `inline` and `no_inline` tokens
gingerBill
2021-08-23
1
-24
/
+1
*
Rewrite thread_pool.cpp
nakst
2021-08-22
1
-2
/
+1
*
Merge branch 'master' into multi-pointers
gingerBill
2021-08-22
1
-8
/
+18
|
\
|
*
Improve error handling for missing semicolon separators in a `for` loop
gingerBill
2021-08-22
1
-8
/
+18
*
|
Add multi-pointer types `[^]T`
gingerBill
2021-08-21
1
-2
/
+14
|
/
[next]