aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Support by-reference semantics in `for value_ref, index in &some_array` and ↵gingerBill2020-03-241-0/+14
| | | | `for key, value_ref in &some_map`
* 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 ↵gingerBill2019-12-151-16/+19
| | | | | | value #502 (Hashing proc was wrong for big ints)
* 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
| | | | `@thread_local` for variables in procedure
* 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
| | | | (related to #427)
* `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
|
* Add `..<` operator for ranges; Add extra checking for bit set assignmentsgingerBill2019-05-281-6/+16
|
* odin querygingerBill2019-05-251-6/+9
| | | | Output .json file containing information about the program
* Allow booleans to be assigned to a 1-bit bit field valuegingerBill2019-05-091-0/+9
|
* Improve type inference for variadic parametersgingerBill2019-05-041-1/+1
|
* Minor change to bit_field assignment rulesgingerBill2019-05-041-1/+1
|
* Fix bug with assigning certain integers to a bit_field #353gingerBill2019-03-191-1/+1
|
* Improve package stringsgingerBill2019-03-151-1/+2
|
* Allow implicit selector expressions in switch statementsgingerBill2019-03-061-3/+3
|
* Make `static` an attribute rather than a keyword prefixgingerBill2019-02-231-5/+12
|
* Pass any and union "by pointer" to make the tag a pointergingerBill2019-01-261-1/+0
|
* Remove dead codegingerBill2019-01-241-2/+1
|
* Fix checking `_` constant declarations with a proceduregingerBill2019-01-101-1/+13
|
* Add entity use when `using` is applied to a variable declarationgingerBill2018-12-311-0/+2
|
* `static` variable declarations (Experimental)gingerBill2018-12-281-0/+16
|
* Fix race condition; Change `for in` addressing modegingerBill2018-12-241-5/+6
|
* Labels for block and if statements (break only)gingerBill2018-12-081-8/+32
|
* Fix #complete switch on pointers to unions #286gingerBill2018-11-291-1/+1
|
* Move atomic intrinsics to the new built-in package intrinsicsgingerBill2018-10-201-2/+2
|
* switch on typeid with type casesgingerBill2018-10-131-17/+31
|
* Minor fixesgingerBill2018-09-241-1/+1
|
* context.allocator = a; Remove __ from runtime procs; improve division for ↵gingerBill2018-09-151-1/+1
| | | | complex numbers
* Allow for optional ok for returngingerBill2018-09-111-2/+4
|
* Make diverging procedure types different from ones without a return typegingerBill2018-09-091-1/+1
|
* Diverging procedures `proc() -> !` (no return)gingerBill2018-09-081-1/+5
|
* Disable for in over cstringgingerBill2018-08-261-1/+1
|
* bit_set['A'..'Z'], bit_set[0..8]gingerBill2018-08-161-18/+3
|