aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Make the parser support as many identifiers on the LHS in `for in` loops to i...gingerBill2021-03-241-9/+18
* Fix `is_diverging_stmt` for invalid statementsgingerBill2021-03-131-4/+4
* Minimize TokenPos size by using `i32` for line/column/offset and file_id inst...gingerBill2021-03-041-23/+18
* Deprecate `inline for` in favour of `#unroll for`gingerBill2021-02-231-5/+5
* Remove `"pure"` and `"pure_none"` calling conventionsgingerBill2021-02-231-11/+0
* Remove `bit_field` type from Odin (keyword and dead runtime code still exists)gingerBill2021-02-191-11/+0
* Improve text/scanner whitespace parameter to use a bit_set instead; Improve e...gingerBill2020-12-151-2/+12
* Fix #795gingerBill2020-12-031-2/+1
* Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> wh...gingerBill2020-11-161-3/+3
* Improve logic for x->y() shorthandgingerBill2020-11-151-2/+1
* Implement custom temporary allocator using ring buffergingerBill2020-11-151-5/+0
* Add SCOPED_TEMPORARY_BLOCK for temporary allocations within a blockgingerBill2020-11-151-15/+15
* Add check to block statements to see if they only contain one statement, a va...gingerBill2020-09-231-0/+60
* Fix issue #723Joseph Battelle2020-09-141-1/+1
* Fix check_arity_match buggingerBill2020-09-121-1/+1
* Make sync.atomic_* operations use `when` statements instead of `switch`; Make...gingerBill2020-08-161-1/+5
* Fix using pointers bug with addressing struct fieldsgingerBill2020-06-181-1/+2
* Fix typo in error messagegingerBill2020-06-061-1/+1
* Improve termination rules checking for missing `return`; Make diverging proce...gingerBill2020-06-061-25/+78
* Add `"pure"` procedure typesgingerBill2020-05-231-0/+11
* Selector Call Expressions: `x->y(123) == x.y(x, 123)`gingerBill2020-05-221-0/+12
* #591 Improve type switch statement error for `fallthrough`gingerBill2020-05-131-2/+6
* Fix #632 behaviourgingerBill2020-05-131-3/+19
* Replace `entity_of_ident` with `entity_of_node`gingerBill2020-05-121-1/+1
* Add experimental atom op tables for llvm-backendgingerBill2020-05-021-0/+55
* Simplify compiler's `Map` and create a `StringMap` specifically for stringsgingerBill2020-04-131-3/+3
* Support by-reference semantics in `for value_ref, index in &some_array` and `...gingerBill2020-03-241-0/+14
* Change behaviour of `switch v in &value` to make `v` have by-reference semanticsgingerBill2020-03-241-2/+6
* Fix branch statements within inline for blocks (partial hack)gingerBill2020-03-151-2/+2
* Fix #578gingerBill2020-02-291-0/+6
* Improve error message on `using` with procedure parameters #568gingerBill2020-02-231-1/+7
* Support `for` and `inline for` for enumerated arraysgingerBill2019-12-271-0/+11
* Implement `#complete switch` by default, replace with `#partial switch` #511gingerBill2019-12-221-33/+24
* Also allow #no_bounds_check on an expression #499gingerBill2019-12-151-13/+12
* Fix Duplicate integer switch case values incorrectly consider its absolute va...gingerBill2019-12-151-16/+19
* Remove addressing mode `Addressing_Immutable`gingerBill2019-12-011-11/+6
* SOA Struct support `intrinsics.soa_struct`gingerBill2019-11-021-0/+3
* multivalued procedure calls allows in `for in` to allow a pseudo-iterator; `@...gingerBill2019-11-021-1/+54
* Fix range in statement bug caused by incorrectly assigned addressing mode #461gingerBill2019-11-021-71/+5
* Allow ranges for array-like compound literalsgingerBill2019-10-261-79/+5
* Fix Compiler assertion when applying `using` to `_` procedure parameter. #451gingerBill2019-10-261-4/+3
* Fix #complete switch with pointer case doesn't compile #416gingerBill2019-10-051-2/+2
* Add suggestions to errors on casts and assignments.gingerBill2019-09-171-1/+2
* Fix global variable initialization orderinggingerBill2019-08-291-1/+6
* `inline for` loops (only for 'in' based for loops)gingerBill2019-08-261-20/+252
* Fix `~(1 << x)` type inference buggingerBill2019-08-231-1/+1
* Make procedure parameters just named values rather than copied variablesgingerBill2019-07-151-0/+4
* Fix unions with zero variantsgingerBill2019-07-071-5/+0
* Fix comparison for bit field values #386gingerBill2019-06-211-38/+12
* Fix ranges in switch statement for stringsgingerBill2019-06-211-0/+7