aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.c
Commit message (Expand)AuthorAgeFilesLines
* Slices now have a capacity.Ginger Bill2017-02-261-0/+1
* Ellipsis is now just `..`; Remove half-closed range operator and treat all of...Ginger Bill2017-02-261-2/+1
* ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...Ginger Bill2017-02-261-2/+46
* A decent union type with common fields and variantsGinger Bill2017-02-211-6/+5
* Ternary expression (removed if and block expression)Ginger Bill2017-02-141-11/+0
* Optional ok for `union_cast` (similar to map indices)Ginger Bill2017-02-141-22/+18
* Reimplement `immutable` with different rules.Ginger Bill2017-02-141-6/+2
* Fix index assignment rules for indirectionGinger Bill2017-02-141-33/+52
* Only check files that have been truly imported.Ginger Bill2017-02-111-3/+11
* Remove need for `type` keywordGinger Bill2017-02-101-5/+25
* Fix global maps and initialize the preload types beforeGinger Bill2017-02-071-1/+0
* Make checking map key exists optionalGinger Bill2017-02-061-5/+2
* `map` string keys and `for` iteratorGinger Bill2017-02-061-0/+5
* dynamic `map` insertion and lookupGinger Bill2017-02-061-3/+7
* Begin writing dynamic map procs and fix `using` bug in IRGinger Bill2017-02-051-0/+8
* Custom struct alignmentGinger Bill2017-02-051-1/+1
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-011-6/+1
* oh boy, basic osx/unix supportzhiayang2017-02-021-0/+1
* Change vector memory layout and operations; `for in` vector.Ginger Bill2017-01-301-3/+5
* Dynamic arraysGinger Bill2017-01-291-0/+7
* Remove while loop and readd c-style for loops i.e. all loops are just `for`Ginger Bill2017-01-271-15/+21
* Fix pointer differences (issue #11); remove #dll_importGinger Bill2017-01-261-4/+4
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-251-11/+10
* Fix issue #10Ginger Bill2017-01-201-0/+9
* `using` `immutable` `thread_local` on variable declarationsGinger Bill2017-01-191-60/+64
* `immutable` field prefixGinger Bill2017-01-191-6/+3
* Closed range `...` (both inclusive); Type comparisons with == and !=Ginger Bill2017-01-191-4/+11
* Comma for all field separators; Overloaded procedures follow exportation rulesGinger Bill2017-01-171-12/+6
* Best viable overloading procedure algorithm; `no_alias`; call expr style castsGinger Bill2017-01-171-1/+3
* Procedure overloadingGinger Bill2017-01-151-14/+54
* Bug fix: comparisons with shiftsGinger Bill2017-01-151-8/+7
* File reorganization for checker system.Ginger Bill2017-01-071-0/+1301