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 (
Collapse
)
Author
Age
Files
Lines
*
Add `@(link_suffix=<string>)`
gingerBill
2024-05-30
1
-2
/
+2
|
*
Add shadow suggestion
gingerBill
2024-05-22
1
-1
/
+5
|
*
Fix `for &v in &fixed_array`
gingerBill
2024-05-20
1
-1
/
+2
|
*
Fix error reporting for enforce new switch/for syntax
gingerBill
2024-05-16
1
-2
/
+2
|
*
Remove the old switch/for semantics entirely and enforce `switch &x in y`
gingerBill
2024-05-16
1
-28
/
+2
|
*
Fix #3587
gingerBill
2024-05-14
1
-1
/
+28
|
*
Attempt at fixing #3588
gingerBill
2024-05-14
1
-0
/
+2
|
*
Fix #3569
gingerBill
2024-05-13
1
-1
/
+1
|
*
Fix #3578
gingerBill
2024-05-13
1
-17
/
+23
|
*
Minor clean up of `is_terminating` code
gingerBill
2024-05-13
1
-8
/
+19
|
|
|
|
This does not fix all known issues with it
*
Fix #3522
gingerBill
2024-05-10
1
-2
/
+32
|
*
Disallow `for x in bitset_or_map` if `x` is a variable that matches the "key"
gingerBill
2024-04-27
1
-0
/
+22
|
*
Generalize Odin call-based "iterators" to work with more than 2-values: `for ↵
gingerBill
2024-04-27
1
-14
/
+21
|
|
|
|
|
|
x, y, z, w in iterate(&it)` It has an artificial limitation of 100 values because if you need for than that, you're doing something wrong.
*
Remove warning on clang
gingerBill
2024-04-12
1
-2
/
+2
|
*
Improve error messages for `switch` and `for` r-values with a suggestion
gingerBill
2024-04-12
1
-0
/
+43
|
*
Add `nil` checks
gingerBill
2024-04-11
1
-2
/
+2
|
*
Fix checker crash when `or_return`/`or_break`/`or_continue` used for ↵
oskarnp
2024-04-06
1
-3
/
+3
|
|
|
|
non-existing proc
*
Improve error messages for `A variable declaration must be an identifier`
gingerBill
2024-04-04
1
-5
/
+22
|
*
Error message when RTTI is disabled when iterating over an `enum` type or a ↵
gingerBill
2024-04-01
1
-0
/
+6
|
|
|
|
`bit_set` of `enum` with `for in`
*
Unify error message logic for ranges over `bit_set`
gingerBill
2024-04-01
1
-9
/
+5
|
*
Support `for in` with `bit_set`
gingerBill
2024-04-01
1
-0
/
+13
|
*
Add error block around `error_line` calls
gingerBill
2024-03-23
1
-0
/
+5
|
*
Ignore wrong types
gingerBill
2024-03-23
1
-1
/
+1
|
*
Add some basic escape analysis errors for `return &x`
gingerBill
2024-03-23
1
-51
/
+44
|
*
Disallow `for x in y.(T)` and `for x in y.?`
gingerBill
2024-03-21
1
-4
/
+7
|
*
Fix error handling for type switch statement
gingerBill
2024-03-20
1
-0
/
+2
|
*
Fix #3301
gingerBill
2024-03-20
1
-0
/
+2
|
*
On `x: [?]T = {...}`, minimize errors by using the `[?]T` expression as a ↵
gingerBill
2024-03-19
1
-5
/
+7
|
|
|
|
kind of hint
*
Fix `for x in y` where `y` is an "optional ok" value, but ignores ↵
gingerBill
2024-03-18
1
-1
/
+5
|
|
|
|
`#optional_allocator_error` values
*
Fix #3282
gingerBill
2024-03-16
1
-0
/
+4
|
*
Fix #3284
gingerBill
2024-03-16
1
-0
/
+6
|
*
Add general support for `bit_field`s
gingerBill
2024-02-22
1
-0
/
+10
|
*
Improve foreign variable fuzzy type checking
gingerBill
2024-01-28
1
-1
/
+1
|
*
Clean up error block usage
gingerBill
2024-01-05
1
-4
/
+2
|
*
Disallow direct return a compound literal of a slice with elements
gingerBill
2023-10-13
1
-0
/
+17
|
*
Add `or_break` and `or_continue` constructs
gingerBill
2023-09-30
1
-0
/
+5
|
*
Fix #2817
gingerBill
2023-09-26
1
-1
/
+1
|
*
Fix `using` bug
gingerBill
2023-08-07
1
-1
/
+1
|
*
Go through loads of `TODO`s
gingerBill
2023-08-01
1
-6
/
+5
|
*
Fix typo
gingerBill
2023-07-31
1
-1
/
+1
|
*
Remove debug code
gingerBill
2023-07-31
1
-1
/
+1
|
*
Improve `//+vet`; remove `using` in many places; add `//+vet !using-stmt` ↵
gingerBill
2023-07-31
1
-2
/
+2
|
|
|
|
where necessary
*
Add separate `-vet` flags; `-vet-using-*` flags; `//+vet` file flags
gingerBill
2023-07-31
1
-0
/
+6
|
*
Fix #2615: can't iterate untyped string
Laytan Laats
2023-07-02
1
-1
/
+1
|
*
Allow `switch &v in ...` work to be consistent with `for &e in ...`
gingerBill
2023-06-26
1
-3
/
+17
|
*
`for &e, i in array` and `for k, &v in map` (alternative to passing the ↵
gingerBill
2023-06-26
1
-4
/
+29
|
|
|
|
iterable by pointer)
*
Correct `check_call_arguments_new_and_improved` logic
gingerBill
2023-06-20
1
-1
/
+7
|
*
Fix #2578 (check for `fallthrough`)
gingerBill
2023-06-07
1
-0
/
+4
|
*
Support `#reverse` for strings
gingerBill
2023-05-29
1
-4
/
+5
|
*
Improve error message for `#reverse` on an interval
gingerBill
2023-05-29
1
-2
/
+2
|
[next]