aboutsummaryrefslogtreecommitdiff
path: root/code
Commit message (Expand)AuthorAgeFilesLines
* Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacityGinger Bill2017-03-021-2/+2
* Slices now have a capacity.Ginger Bill2017-02-261-8/+10
* Ellipsis is now just `..`; Remove half-closed range operator and treat all of...Ginger Bill2017-02-261-4/+4
* Fix fmt integer width printingGinger Bill2017-02-261-1/+1
* ++ -- statements; add strconv.odin (and replace some of the fmt procs); Fix ~...Ginger Bill2017-02-261-5/+10
* Fix Tuple type info bugGinger Bill2017-02-241-0/+12
* v0.1.1v0.1.1Ginger Bill2017-02-241-100/+12
* A decent union type with common fields and variantsGinger Bill2017-02-211-5/+95
* Begin changing `union` syntaxGinger Bill2017-02-191-1/+1
* Unexported struct fields on selectorsGinger Bill2017-02-191-0/+7
* Unexported struct fieldsGinger Bill2017-02-191-7/+0
* `delete` for mapsGinger Bill2017-02-191-0/+7
* Fix overloading bug due to `#import .`; Add sys/wgl.odinGinger Bill2017-02-191-1/+1
* Fix overloading bug due to comparison of named typesGinger Bill2017-02-181-1/+0
* Change ternary expression precedenceGinger Bill2017-02-181-3/+2
* Ternary expression (removed if and block expression)Ginger Bill2017-02-141-9/+6
* Prevent `cast` on pointer to union typesGinger Bill2017-02-141-0/+7
* Optional ok for `union_cast` (similar to map indices)Ginger Bill2017-02-141-1/+7
* Fix immutable rules; add some general documentationGinger Bill2017-02-141-9/+3
* Reimplement `immutable` with different rules.Ginger Bill2017-02-141-7/+3
* Fix index assignment rules for indirectionGinger Bill2017-02-141-4/+11
* Fix issue #23Ginger Bill2017-02-121-0/+7
* v0.1.0v0.1.0Ginger Bill2017-02-111-36/+69
* Dynamic array syntax [...]Type; make entities private with a prefix of `_`; f...Ginger Bill2017-02-111-17/+26
* Only check files that have been truly imported.Ginger Bill2017-02-111-10/+1
* Remove need for `type` keywordGinger Bill2017-02-101-1/+1
* Remove Maybe type; Enum `names`Ginger Bill2017-02-101-39/+38
* Fix global maps and initialize the preload types beforeGinger Bill2017-02-071-3/+9
* Map type info and fmt printingGinger Bill2017-02-071-4/+2
* `map` literalsGinger Bill2017-02-061-13/+33
* Make checking map key exists optionalGinger Bill2017-02-061-2/+2
* `map` string keys and `for` iteratorGinger Bill2017-02-061-5/+9
* dynamic `map` insertion and lookupGinger Bill2017-02-061-3/+4
* Nearly implement dynamics map, missing insertionGinger Bill2017-02-061-3/+4
* Begin writing dynamic map procs and fix `using` bug in IRGinger Bill2017-02-051-3/+8
* Add `types.odin`; Begin work on `map`Ginger Bill2017-02-051-1/+5
* Custom struct alignmentGinger Bill2017-02-052-86/+101
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-011-0/+2
* Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-022-15/+28
|\
| * Change internals of `context`; Disable `immutable`Ginger Bill2017-02-011-0/+10
* | oh boy, basic osx/unix supportzhiayang2017-02-021-3/+3
|/
* Change vector memory layout and operations; `for in` vector.Ginger Bill2017-01-301-0/+16
* Allow _ in floatsGinger Bill2017-01-291-7/+7
* sprint*, variadic append works correctly now.Ginger Bill2017-01-291-280/+5
* Variadic `append`Ginger Bill2017-01-291-6/+1
* Dynamic arraysGinger Bill2017-01-291-2/+13
* Update README.mdv0.0.6bGinger Bill2017-01-292-3/+558
* Fix untyped to `any` assignments. Fixed crash when arguments with no value ar...Ginger Bill2017-01-291-277/+3
* Overloaded `free`; 3 dotted ellipsisv0.0.6aGinger Bill2017-01-282-6/+9
* Fix parsing for block/if expression within if/for/etc. statementsv0.0.6Ginger Bill2017-01-273-257/+268