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.hpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add `@force` to `foreign import`
gingerBill
2019-11-01
1
-0
/
+1
*
Fix slice and dynamic array lengths determined from ranged compound literals
gingerBill
2019-10-26
1
-1
/
+1
*
Allow ranges for array-like compound literals
gingerBill
2019-10-26
1
-0
/
+1
*
Support for named indices for array-like compound literals `{3 = a, 1 = b}`
gingerBill
2019-10-20
1
-0
/
+1
*
Add `where` clauses to `struct` and `union`
gingerBill
2019-09-08
1
-12
/
+16
*
Minor changes
gingerBill
2019-09-01
1
-1
/
+1
*
ThreadPool for the parser
gingerBill
2019-09-01
1
-0
/
+13
*
`where` clauses for procedure literals
gingerBill
2019-08-31
1
-0
/
+2
*
`inline for` loops (only for 'in' based for loops)
gingerBill
2019-08-26
1
-0
/
+9
*
Struct field tags
gingerBill
2019-08-09
1
-1
/
+3
*
Make procedure parameters just named values rather than copied variables
gingerBill
2019-07-15
1
-2
/
+0
*
union #no_nil
gingerBill
2019-07-09
1
-0
/
+1
*
Minor code clean up
gingerBill
2019-03-11
1
-1
/
+0
*
Implicit Selector Expressions: `.A`
gingerBill
2019-03-06
1
-0
/
+1
*
Make `static` an attribute rather than a keyword prefix
gingerBill
2019-02-23
1
-1
/
+0
*
Add "none" calling convention
gingerBill
2019-02-23
1
-0
/
+3
*
Pass any and union "by pointer" to make the tag a pointer
gingerBill
2019-01-26
1
-1
/
+0
*
Remove dead code
gingerBill
2019-01-24
1
-5
/
+0
*
`static` variable declarations (Experimental)
gingerBill
2018-12-28
1
-0
/
+1
*
Disallow casting between `cstring` and `[]u8`
gingerBill
2018-12-14
1
-0
/
+2
*
Labels for block and if statements (break only)
gingerBill
2018-12-08
1
-0
/
+2
*
`opaque` keyword and type
gingerBill
2018-11-11
1
-0
/
+4
*
Fix package usage with `when` on `import` #278
gingerBill
2018-11-07
1
-2
/
+4
*
Built-in procedure `#defined`
gingerBill
2018-10-27
1
-0
/
+1
*
Remove AstTypeType
gingerBill
2018-10-13
1
-4
/
+0
*
Procedure inlining on call site
gingerBill
2018-09-09
1
-0
/
+1
*
Make diverging procedure types different from ones without a return type
gingerBill
2018-09-09
1
-1
/
+1
*
Diverging procedures `proc() -> !` (no return)
gingerBill
2018-09-08
1
-0
/
+1
*
Parametric polymorphic union type
gingerBill
2018-09-08
1
-3
/
+4
*
`typeid` as keyword (ready to implement polymorphic name parameters)
gingerBill
2018-09-02
1
-0
/
+4
*
Add underlying type for `bit_set`
gingerBill
2018-08-17
1
-1
/
+2
*
Fix defer ir bug
gingerBill
2018-08-15
1
-1
/
+1
*
`bit_set` constants
gingerBill
2018-08-14
1
-1
/
+2
*
Add `bit_set` type
gingerBill
2018-08-14
1
-0
/
+4
*
`auto_cast` prefix for procedure parameters
gingerBill
2018-08-09
1
-2
/
+2
*
Replace `context <- c {}` with `context = c;`. context assignments are scope...
gingerBill
2018-08-04
1
-6
/
+1
*
foreign import x {"foo.lib", "bar.lib"}
gingerBill
2018-07-29
1
-2
/
+2
*
Do `using Foo :: enum` at the `type_decl` stage
gingerBill
2018-07-29
1
-3
/
+3
*
using Foo :: enum {A, B, C}; len(Foo)
gingerBill
2018-07-29
1
-1
/
+1
*
Allow importation of `core:builtin` to get built-in entities
gingerBill
2018-06-17
1
-0
/
+1
*
Move TypeAndValue to Ast from Map
gingerBill
2018-06-17
1
-33
/
+55
*
Rename `clone_ast_node` to `clone_ast`
gingerBill
2018-06-17
1
-10
/
+10
*
Big renaming: `AstNode` to `Ast`
gingerBill
2018-06-17
1
-267
/
+267
*
Minimize AstNode size
gingerBill
2018-06-17
1
-6
/
+2
*
Modify CommentGroup parsing
gingerBill
2018-06-17
1
-17
/
+22
*
Change how `context <-` is parsed to remove the need for a look-ahead
gingerBill
2018-06-11
1
-3
/
+4
*
Remove `using in` stuff
gingerBill
2018-06-11
1
-12
/
+0
*
Use global arena for AstNode allocations
gingerBill
2018-06-09
1
-4
/
+15
*
Comment based build tags for packages (basic and temporary)
gingerBill
2018-05-28
1
-0
/
+1
*
Parallelize per file rather than per package
gingerBill
2018-05-28
1
-6
/
+14
[next]