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 for empty generic declaration list
Ginger Bill
2017-06-12
1
-1
/
+8
*
foreign_library allow for Pascal-style grouping
Ginger Bill
2017-06-12
1
-249
/
+118
*
Pascal style declaration grouping with ()
Ginger Bill
2017-06-12
1
-216
/
+319
*
`import` and `import_load` as keywords; Fix procedure literal call trick
Ginger Bill
2017-06-12
1
-59
/
+71
*
Prefix `type` and `let` to replace `immutable`
Ginger Bill
2017-06-12
1
-27
/
+66
*
Prefix `proc` syntax
Ginger Bill
2017-06-12
1
-7
/
+62
*
Remove := with var and :: with const
Ginger Bill
2017-06-12
1
-22
/
+45
*
Make default arguments for records invalid syntax
Ginger Bill
2017-06-11
1
-1
/
+1
*
Default parameters for procedures
Ginger Bill
2017-06-11
1
-12
/
+48
*
Named procedure calls
Ginger Bill
2017-06-11
1
-0
/
+5
*
Remove unnecessary `typedef` usage
Ginger Bill
2017-06-08
1
-119
/
+118
*
Use templated `Array` with bounds checking
Ginger Bill
2017-06-08
1
-54
/
+56
*
Update `String` to use overloading
Ginger Bill
2017-06-08
1
-40
/
+40
*
Build as C++
Ginger Bill
2017-06-08
1
-0
/
+4255
*
Change extensions .cpp to .c
Ginger Bill
2016-11-23
1
-3243
/
+0
*
Compile as C! Whoop!
Ginger Bill
2016-11-23
1
-34
/
+34
*
Remove auto
Ginger Bill
2016-11-23
1
-5
/
+6
*
typedef struct and start removing auto
Ginger Bill
2016-11-23
1
-23
/
+23
*
Remove templated Map; replace with #include macro "templates" trick
Ginger Bill
2016-11-23
1
-51
/
+48
*
Remove Array<T> and replace with macro version
Ginger Bill
2016-11-22
1
-36
/
+36
*
Remove: string overloads; defer
Ginger Bill
2016-11-22
1
-48
/
+52
*
128 bit integers
Ginger Bill
2016-11-22
1
-0
/
+5
*
Support `any` in `match type`
Ginger Bill
2016-11-20
1
-1
/
+1
*
#foreign_library; vector fields (x, y, z, w) for count <= 4
Ginger Bill
2016-11-15
1
-21
/
+48
*
Minor `Entity` refactor
Ginger Bill
2016-10-30
1
-13
/
+23
*
Code reorganization - Separate files and slice refactoring
Ginger Bill
2016-10-26
1
-11
/
+4
*
Separation of certain instructions for better clarity.
Ginger Bill
2016-10-23
1
-1
/
+1
*
Separate ssa_struct_gep and ssa_array_gep procedures
Ginger Bill
2016-10-23
1
-14
/
+14
*
Minor Style Fixes
Ginger Bill
2016-10-22
1
-24
/
+18
*
union_cast
Ginger Bill
2016-10-16
1
-8
/
+30
*
Implicit Values: `context`; Fix lvalue selector assignments; Fix offset_of* f...
Ginger Bill
2016-10-10
1
-11
/
+11
*
Very Basic Profiling
Ginger Bill
2016-10-09
1
-8
/
+13
*
Change from gbArray(T) to Array<T>
Ginger Bill
2016-10-08
1
-79
/
+79
*
"Maybe-fy" operator
Ginger Bill
2016-10-08
1
-0
/
+1
*
Demaybe operator ?
Ginger Bill
2016-10-07
1
-10
/
+30
*
Maybe types; value, ok := maybe_value(x)
Ginger Bill
2016-10-06
1
-60
/
+82
*
Untyped `nil`
Ginger Bill
2016-10-06
1
-74
/
+84
*
Refactor: Remove dead code
Ginger Bill
2016-10-02
1
-47
/
+26
*
Const Aggregate Literals for IR; Module path fix
Ginger Bill
2016-09-30
1
-4
/
+1
*
Begin work on const llvm aggregate literals
Ginger Bill
2016-09-30
1
-13
/
+69
*
Minimal Dependency Map: Only build what is needed
Ginger Bill
2016-09-27
1
-222
/
+248
*
Unicode file loading; push_allocator & push_context
Ginger Bill
2016-09-23
1
-45
/
+79
*
Fix enum type comparison; Start demo 003 code
Ginger Bill
2016-09-21
1
-7
/
+25
*
Filename as default import name; as .; as _; panic()
Ginger Bill
2016-09-21
1
-16
/
+46
*
enum_to_string fix; enum count, min_value, max_value
Ginger Bill
2016-09-19
1
-19
/
+19
*
enum_to_string
Ginger Bill
2016-09-19
1
-19
/
+52
*
Core library and Better name mangling for files
Ginger Bill
2016-09-19
1
-2
/
+0
*
Better name mangler for SSA generation
Ginger Bill
2016-09-18
1
-18
/
+8
*
#import search rule: relative then core/
Ginger Bill
2016-09-17
1
-21
/
+61
*
VarDecl and ConstDecl split; error, warning, et al. now global
Ginger Bill
2016-09-17
1
-138
/
+113
[prev]
[next]