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
...
*
`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
*
Clean up name mangling by using unique package names per project
gingerBill
2018-05-27
1
-0
/
+1
*
Reorganize `runtime` package
gingerBill
2018-05-27
1
-6
/
+12
*
Remove dead code
gingerBill
2018-05-27
1
-11
/
+1
*
Single file "main" file
gingerBill
2018-05-27
1
-14
/
+14
*
Allow for either .odin file or directory as the initial start
gingerBill
2018-05-27
1
-1
/
+1
*
Move ODIN_* platform constants to `core:os`
gingerBill
2018-05-27
1
-1
/
+1
*
IR now builds with the new package system
gingerBill
2018-05-27
1
-0
/
+2
*
Add file scopes for the packages
gingerBill
2018-05-27
1
-2
/
+2
*
Add basic package support (no IR support yet)
gingerBill
2018-05-26
1
-7
/
+11
*
Parse directories to be packages
gingerBill
2018-05-21
1
-21
/
+33
*
`array_make`
gingerBill
2018-02-25
1
-7
/
+0
*
auto_cast
gingerBill
2018-02-18
1
-0
/
+1
*
#complete switch; Removal of dyncall
gingerBill
2018-02-17
1
-9
/
+11
*
`distinct` keyword for type declarations
gingerBill
2018-02-05
1
-1
/
+1
*
Remove dead code; Fix issue regarding order of evaluation of function paramet...
gingerBill
2018-02-04
1
-42
/
+28
*
`enum #export`
gingerBill
2018-01-21
1
-0
/
+1
*
Named return value act as variables; Code reorganization
gingerBill
2018-01-17
1
-0
/
+545
[prev]