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
...
*
|
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
|
/
*
Enforce `core:builtin` and `core:intrinsics` for imports
gingerBill
2021-08-21
1
-1
/
+6
*
Remove unused code
gingerBill
2021-08-19
1
-3
/
+0
*
Remove dead code, and add an extra mutex
gingerBill
2021-08-18
1
-17
/
+5
*
Add mutex to Scope lookups and insertions
gingerBill
2021-08-18
1
-13
/
+13
*
Allow `+` in import paths
gingerBill
2021-08-16
1
-2
/
+1
*
Improve parsing for `or_return`; allow `#force_inline foo() or_return;`
gingerBill
2021-08-16
1
-6
/
+21
*
Add `clone_ast` for `or_else` and `or_return`
gingerBill
2021-08-15
1
-0
/
+7
*
Make `or_else` and `or_return` operators (binary and suffix respectively)
gingerBill
2021-08-15
1
-4
/
+34
*
Improve error handling for field list prefixes
gingerBill
2021-08-15
1
-22
/
+29
*
Minor clean up of `parse_field_prefixes`
gingerBill
2021-08-15
1
-37
/
+48
*
Add `#any_int` directive to replace `auto_cast` uses on parameters.
gingerBill
2021-08-15
1
-2
/
+9
*
Add assignment statement to `#no_bounds_check` etc rules. Correct `os_linux.o...
gingerBill
2021-08-15
1
-1
/
+2
*
Define where `#bounds_check`/`#no_bounds_check` can be applied
gingerBill
2021-08-15
1
-42
/
+72
*
Improve parsing handling for the `{ return }` cases
gingerBill
2021-08-09
1
-1
/
+12
*
Minor procedure rename
gingerBill
2021-08-08
1
-1
/
+1
*
Improve core:odin/parser
gingerBill
2021-08-04
1
-2
/
+2
*
Improve error message when using a comma rather than a semicolon in a `bit_set`
gingerBill
2021-08-03
1
-0
/
+6
*
Remove the literal conversion logic to the parser from the tokenizer
gingerBill
2021-08-02
1
-5
/
+31
*
Begin optimizing tokenizer; Replace `gb_utf8_decode` with `utf8_decode` (CC b...
gingerBill
2021-08-01
1
-5
/
+5
*
Define which mutexes are blocking and recursive explicitly
gingerBill
2021-07-27
1
-15
/
+15
*
Big simplification and improvement of the entity collection system, reducing ...
gingerBill
2021-07-27
1
-0
/
+7
*
Improve default scope size
gingerBill
2021-07-27
1
-0
/
+24
*
Fix syntax error for a missing package name
gingerBill
2021-07-26
1
-2
/
+8
*
INTERNAL USE ONLY: `//+lazy` build flag
gingerBill
2021-07-25
1
-2
/
+13
*
Move things around for sanity checking for multithread preparation
gingerBill
2021-07-10
1
-6
/
+10
[prev]
[next]