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_expr.cpp
Commit message (
Collapse
)
Author
Age
Files
Lines
...
*
Fix line error printing for error messages
gingerBill
2023-06-19
1
-55
/
+695
|
*
Begin work in procedure calls
gingerBill
2023-06-19
1
-106
/
+227
|
*
Basic support for new procedure code (non-polymorphic, non-proc-group)
gingerBill
2023-06-15
1
-15
/
+373
|
*
Begin work allowing mixture of named and unnamed
gingerBill
2023-06-14
1
-28
/
+45
|
*
Separate out logic for checking mixture of named and unnamed parameters
gingerBill
2023-06-14
1
-29
/
+38
|
*
Basic enforcement of ordered named arguments/parameters for procedures
gingerBill
2023-06-14
1
-11
/
+120
|
*
Minor change to handling of propagation of errors with `---` as a value
gingerBill
2023-05-22
1
-24
/
+21
|
*
Fix `---` on variable declarations
gingerBill
2023-05-22
1
-1
/
+4
|
*
Restrict `---` to variable declarations only
gingerBill
2023-05-22
1
-6
/
+25
|
*
Add `intrinsics.type_merge`
gingerBill
2023-05-19
1
-1
/
+1
|
*
Allow implicit conversion between boolean types within `or_return`
gingerBill
2023-05-18
1
-2
/
+5
|
|
|
|
This is to improve the experience using third-party code, especially foreign C-like code which may use a distinct boolean or a different sized one
*
Make `!x` be an untyped boolean
gingerBill
2023-04-27
1
-0
/
+2
|
*
Allow aliasing foreign import name
gingerBill
2023-04-20
1
-1
/
+3
|
*
Improve grammar
gingerBill
2023-04-15
1
-1
/
+1
|
*
Add `struct #no_copy`
gingerBill
2023-04-15
1
-0
/
+20
|
*
Fix minor memory leak
gingerBill
2023-03-16
1
-5
/
+12
|
*
Improve error message on undefined operators
dev-2023-03
gingerBill
2023-03-02
1
-5
/
+4
|
*
Merge branch 'master' into new-temp-allocator
gingerBill
2023-02-28
1
-124
/
+263
|
\
|
*
Improve error line squiggle logic
gingerBill
2023-02-27
1
-2
/
+2
|
|
|
*
Allow compound literals to access fields through `using`
gingerBill
2023-02-26
1
-85
/
+120
|
|
|
*
Improve error bounds for `check_comparison`
gingerBill
2023-02-22
1
-3
/
+3
|
|
|
*
Make `-verbose-errors` the default; `-terse-errors` to disable it
gingerBill
2023-02-22
1
-1
/
+5
|
|
|
*
Improve errors about conversions of constant integers
gingerBill
2023-02-22
1
-6
/
+56
|
|
|
*
Improve error message for typed constants that cannot be represented by a type
gingerBill
2023-02-21
1
-4
/
+11
|
|
|
*
Improve error messages when trying to access a non-existent field on a type
gingerBill
2023-02-21
1
-14
/
+23
|
|
|
*
Improve some error messages when casting a constant value which needs to be ↵
gingerBill
2023-02-21
1
-8
/
+23
|
|
|
|
|
|
|
|
truncated/rounded
|
*
Fix bug with for in statements and pointer intervals
gingerBill
2023-02-21
1
-6
/
+14
|
|
|
*
Check for procedure literals in `$` parameters
gingerBill
2023-02-19
1
-1
/
+11
|
|
|
*
Fix issue that conflicts with constant parapoly procedures and `deferred_*` ↵
gingerBill
2023-02-19
1
-3
/
+2
|
|
|
|
|
|
|
|
procedures
|
*
Fix overriding procedure information for literals
gingerBill
2023-02-17
1
-1
/
+3
|
|
*
|
Warn on 'expand_to_tuple' has been replaced with 'expand_values'
gingerBill
2023-02-10
1
-0
/
+4
|
/
*
Remove internal `readonly` attribute
gingerBill
2023-02-03
1
-3
/
+3
|
*
Temporarily make all `map` get calls dynamic
gingerBill
2023-02-03
1
-3
/
+3
|
*
Make static map calls the default; add `-dynamic-map-calls`
gingerBill
2023-02-03
1
-6
/
+6
|
*
Improve ternary logic for untyped nil stuff
gingerBill
2023-01-30
1
-3
/
+5
|
*
Improve ternary if expression type inference rues
gingerBill
2023-01-30
1
-2
/
+11
|
|
|
|
|
|
Allow for expression like this `x: union{f32} = f32(123) if cond else nil`
*
Correct `arena_temp_end` usage when no allocation ever happens for that arena
gingerBill
2023-01-28
1
-3
/
+1
|
*
Fix #2286 by printing an error correctly
gingerBill
2023-01-16
1
-0
/
+3
|
*
Remove `auto_cast` procedure field flag
gingerBill
2023-01-16
1
-9
/
+1
|
|
|
|
Fixes #2285
*
Fix #2267 by making it an error
gingerBill
2023-01-16
1
-2
/
+4
|
*
Add error message for atomic intrinsics to prevent arbitrary types
gingerBill
2023-01-16
1
-0
/
+11
|
*
Fix #2301
gingerBill
2023-01-16
1
-1
/
+1
|
*
Minimize `StringMap` structure usage
gingerBill
2023-01-14
1
-1
/
+1
|
*
Minimize contention on the deps for decls
gingerBill
2023-01-12
1
-0
/
+3
|
*
Add `ArenaTemp` to the compiler
gingerBill
2023-01-12
1
-10
/
+27
|
*
Add uncomment `add_type_info_type` calls for type assertions
gingerBill
2023-01-05
1
-4
/
+4
|
*
Narrow mutex usage
gingerBill
2023-01-04
1
-4
/
+3
|
*
Localize `GenProcsData` to the entity itself
gingerBill
2023-01-04
1
-15
/
+14
|
*
Minimize `add_type_info_type` usage
gingerBill
2023-01-03
1
-4
/
+4
|
*
Use `RwMutex` for `gen_procs`
gingerBill
2023-01-03
1
-8
/
+8
|
[prev]
[next]