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
/
check_stmt.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
`inline for` loops (only for 'in' based for loops)
gingerBill
2019-08-26
1
-20
/
+252
*
Fix `~(1 << x)` type inference bug
gingerBill
2019-08-23
1
-1
/
+1
*
Make procedure parameters just named values rather than copied variables
gingerBill
2019-07-15
1
-0
/
+4
*
Fix unions with zero variants
gingerBill
2019-07-07
1
-5
/
+0
*
Fix comparison for bit field values #386
gingerBill
2019-06-21
1
-38
/
+12
*
Fix ranges in switch statement for strings
gingerBill
2019-06-21
1
-0
/
+7
*
Add `..<` operator for ranges; Add extra checking for bit set assignments
gingerBill
2019-05-28
1
-6
/
+16
*
odin query
gingerBill
2019-05-25
1
-6
/
+9
*
Allow booleans to be assigned to a 1-bit bit field value
gingerBill
2019-05-09
1
-0
/
+9
*
Improve type inference for variadic parameters
gingerBill
2019-05-04
1
-1
/
+1
*
Minor change to bit_field assignment rules
gingerBill
2019-05-04
1
-1
/
+1
*
Fix bug with assigning certain integers to a bit_field #353
gingerBill
2019-03-19
1
-1
/
+1
*
Improve package strings
gingerBill
2019-03-15
1
-1
/
+2
*
Allow implicit selector expressions in switch statements
gingerBill
2019-03-06
1
-3
/
+3
*
Make `static` an attribute rather than a keyword prefix
gingerBill
2019-02-23
1
-5
/
+12
*
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
-2
/
+1
*
Fix checking `_` constant declarations with a procedure
gingerBill
2019-01-10
1
-1
/
+13
*
Add entity use when `using` is applied to a variable declaration
gingerBill
2018-12-31
1
-0
/
+2
*
`static` variable declarations (Experimental)
gingerBill
2018-12-28
1
-0
/
+16
*
Fix race condition; Change `for in` addressing mode
gingerBill
2018-12-24
1
-5
/
+6
*
Labels for block and if statements (break only)
gingerBill
2018-12-08
1
-8
/
+32
*
Fix #complete switch on pointers to unions #286
gingerBill
2018-11-29
1
-1
/
+1
*
Move atomic intrinsics to the new built-in package intrinsics
gingerBill
2018-10-20
1
-2
/
+2
*
switch on typeid with type cases
gingerBill
2018-10-13
1
-17
/
+31
*
Minor fixes
gingerBill
2018-09-24
1
-1
/
+1
*
context.allocator = a; Remove __ from runtime procs; improve division for com...
gingerBill
2018-09-15
1
-1
/
+1
*
Allow for optional ok for return
gingerBill
2018-09-11
1
-2
/
+4
*
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
-1
/
+5
*
Disable for in over cstring
gingerBill
2018-08-26
1
-1
/
+1
*
bit_set['A'..'Z'], bit_set[0..8]
gingerBill
2018-08-16
1
-18
/
+3
*
Cleaning type hinting for assignments
gingerBill
2018-08-14
1
-1
/
+1
*
Fix demo and improve type hinting
gingerBill
2018-08-14
1
-1
/
+1
*
Minor sanity features for `bit_set`
gingerBill
2018-08-14
1
-1
/
+1
*
Replace `context <- c {}` with `context = c;`. context assignments are scope...
gingerBill
2018-08-04
1
-11
/
+4
*
Reduce number of range and slice operators #239
gingerBill
2018-08-01
1
-6
/
+3
*
BigInt support in the constant system
gingerBill
2018-07-28
1
-11
/
+10
*
Minor cleanup for builtin scope/pkg
gingerBill
2018-06-17
1
-2
/
+2
*
Move TypeAndValue to Ast from Map
gingerBill
2018-06-17
1
-2
/
+2
*
Big renaming: `AstNode` to `Ast`
gingerBill
2018-06-17
1
-95
/
+95
*
Minimize AstNode size
gingerBill
2018-06-17
1
-2
/
+3
*
Modify how build settings are handled
gingerBill
2018-06-15
1
-4
/
+0
*
Fix type aliasing comparison; Fix gb_utf8_decode
gingerBill
2018-06-15
1
-3
/
+7
*
Remove `using in` stuff
gingerBill
2018-06-11
1
-147
/
+0
*
Entity aliasing clean up
gingerBill
2018-06-09
1
-11
/
+11
*
Use const & for Array<AstNode *> parameters
gingerBill
2018-06-03
1
-3
/
+3
*
Remove clutter parameters and begin parallelizing the type checker
gingerBill
2018-05-28
1
-3
/
+3
*
Refactor: use CheckerContext rather than Checker in type checking part
gingerBill
2018-05-28
1
-183
/
+181
*
Remove `tmp_allocator` from `Checker`
gingerBill
2018-05-28
1
-20
/
+16
[prev]
[next]