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.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix minor bugs in IR for slices
Ginger Bill
2017-02-23
1
-1
/
+1
*
A decent union type with common fields and variants
Ginger Bill
2017-02-21
1
-12
/
+39
*
Begin changing `union` syntax
Ginger Bill
2017-02-19
1
-9
/
+33
*
Named return values but do not affect other declarations
Ginger Bill
2017-02-18
1
-92
/
+73
*
Change ternary expression precedence
Ginger Bill
2017-02-18
1
-45
/
+35
*
Ternary expression (removed if and block expression)
Ginger Bill
2017-02-14
1
-149
/
+127
*
Prevent `cast` on pointer to union types
Ginger Bill
2017-02-14
1
-3
/
+3
*
Fix immutable rules; add some general documentation
Ginger Bill
2017-02-14
1
-1
/
+3
*
Reimplement `immutable` with different rules.
Ginger Bill
2017-02-14
1
-3
/
+3
*
Use a global to store the build context information
Ginger Bill
2017-02-12
1
-9
/
+5
*
v0.1.0
v0.1.0
Ginger Bill
2017-02-11
1
-23
/
+20
*
Dynamic array syntax [...]Type; make entities private with a prefix of `_`; f...
Ginger Bill
2017-02-11
1
-4
/
+9
*
Only check files that have been truly imported.
Ginger Bill
2017-02-11
1
-44
/
+67
*
Remove need for `type` keyword
Ginger Bill
2017-02-10
1
-49
/
+38
*
Remove Maybe type; Enum `names`
Ginger Bill
2017-02-10
1
-31
/
+0
*
`map` literals
Ginger Bill
2017-02-06
1
-0
/
+1
*
Custom struct alignment
Ginger Bill
2017-02-05
1
-261
/
+312
*
Update code from OSX merge to be consistent with the rest of the code
Ginger Bill
2017-02-01
1
-0
/
+5
*
Merge branch 'master' of https://github.com/zhiayang/Odin
zhiayang
2017-02-02
1
-143
/
+89
|
\
|
*
Change internals of `context`; Disable `immutable`
Ginger Bill
2017-02-01
1
-143
/
+89
*
|
oh boy, basic osx/unix support
zhiayang
2017-02-02
1
-0
/
+1
|
/
*
Dynamic arrays
Ginger Bill
2017-01-29
1
-8
/
+26
*
Overloaded `free`; 3 dotted ellipsis
v0.0.6a
Ginger Bill
2017-01-28
1
-5
/
+12
*
Fix parsing for block/if expression within if/for/etc. statements
v0.0.6
Ginger Bill
2017-01-27
1
-5
/
+8
*
Remove while loop and readd c-style for loops i.e. all loops are just `for`
Ginger Bill
2017-01-27
1
-50
/
+111
*
`in` keyword for `for` and `match type`
Ginger Bill
2017-01-27
1
-2
/
+2
*
Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code.
Ginger Bill
2017-01-27
1
-5
/
+4
*
Library names - Only link with used foreign libraries
Ginger Bill
2017-01-26
1
-43
/
+66
*
Fix pointer differences (issue #11); remove #dll_import
Ginger Bill
2017-01-26
1
-24
/
+30
*
Change casting syntax: `cast(T)x` `transmute(T)x` et al.
Ginger Bill
2017-01-25
1
-17
/
+102
*
Fix issue #10
Ginger Bill
2017-01-20
1
-35
/
+19
*
`using` `immutable` `thread_local` on variable declarations
Ginger Bill
2017-01-19
1
-29
/
+59
*
`immutable` field prefix
Ginger Bill
2017-01-19
1
-57
/
+69
*
Closed range `...` (both inclusive); Type comparisons with == and !=
Ginger Bill
2017-01-19
1
-2
/
+6
*
Change cast syntax, int(x), []byte(s), (^int)(p)
Ginger Bill
2017-01-17
1
-16
/
+14
*
Fix conversion of untyped integers to pointers
Ginger Bill
2017-01-17
1
-5
/
+5
*
Comma for all field separators; Overloaded procedures follow exportation rules
Ginger Bill
2017-01-17
1
-74
/
+164
*
Best viable overloading procedure algorithm; `no_alias`; call expr style casts
Ginger Bill
2017-01-17
1
-18
/
+40
*
Bug fix: comparisons with shifts
Ginger Bill
2017-01-15
1
-30
/
+42
*
Fix problem with `odin build`
Ginger Bill
2017-01-05
1
-10
/
+7
*
Rename llir -> ir
Ginger Bill
2017-01-04
1
-31
/
+0
*
v0.0.5
Ginger Bill
2017-01-03
1
-0
/
+3
*
`while`; `range` is now `for`; remove ++ and --
Ginger Bill
2017-01-03
1
-93
/
+44
*
Interval expressions in `range`
Ginger Bill
2017-01-03
1
-17
/
+35
*
`range` statement
Ginger Bill
2017-01-02
1
-62
/
+127
*
Fix parameter/field lists and #import #include syntax
Ginger Bill
2017-01-02
1
-239
/
+103
*
Nearly finished Jai-like declarations
Ginger Bill
2017-01-01
1
-56
/
+81
*
Begin transition to Jai-like syntax
Ginger Bill
2017-01-01
1
-67
/
+117
*
More declaration differentiation in semantic stage e.g. make only variables a...
Ginger Bill
2017-01-01
1
-16
/
+18
*
Add enum type info and fix enum casting
Ginger Bill
2017-01-01
1
-9
/
+4
[next]