aboutsummaryrefslogtreecommitdiff
path: root/code
Commit message (Collapse)AuthorAgeFilesLines
* v0.3 Releasev0.3.0Ginger Bill2017-06-081-4/+6
|
* v0.3.0Ginger Bill2017-06-071-11/+192
|
* Implement u128/i128 features; Add bits.odinGinger Bill2017-06-011-18/+0
|
* Use 128-bit integers for ExactValue integersGinger Bill2017-05-301-0/+18
|
* `default:` to `case:`; `no_alias` to `#no_alias`Ginger Bill2017-05-271-1/+1
|
* Revert demo.odinGinger Bill2017-05-091-1/+16
|
* Fix issue #63 for block comments not terminating at an EOFGinger Bill2017-05-091-17/+1
|
* Add hidden __tag for union variables.Ginger Bill2017-05-041-0/+1
|
* Fix alignment and size bug of enums; Remove #ordered and make the default ↵Ginger Bill2017-05-021-1/+0
| | | | #ordered.
* Remove check on array/slice/dynamic element sizeGinger Bill2017-05-021-0/+1
|
* Revert to previous demoGinger Bill2017-04-281-7/+13
|
* Fix issue #51; begin work on `atomic` typesGinger Bill2017-04-281-13/+7
|
* Revert to the old demoGinger Bill2017-04-161-643/+10
|
* IR emit C ABI compatible types for calling conventions (Only for x86/amd64 ↵Ginger Bill2017-04-161-10/+643
| | | | like processors at the moment)
* Fix segfault with heap allocationroot2017-04-101-13/+0
|
* Fix ir bugs: global variable names, untyped to any assignmentGinger Bill2017-04-061-4/+13
|
* Fix issue #31; Removed `down_cast`Ginger Bill2017-04-041-1/+5
|
* Update and regression test old demosGinger Bill2017-04-025-447/+448
|
* len, cap, make; remove .count, .capacity, new_sliceGinger Bill2017-04-021-5/+13
|
* Fix `conj`Ginger Bill2017-04-011-2/+1
|
* Add Quaternions: quaternion128, quaternion256Ginger Bill2017-04-011-4/+4
|
* Fix constant conversion for complex numbers from integersGinger Bill2017-04-011-0/+2
|
* Complex numbers: complex64 complex128Ginger Bill2017-04-011-313/+2
|
* v0.1.3v0.1.3Ginger Bill2017-03-271-4/+17
|
* Multiple type cases for `match in`Ginger Bill2017-03-191-0/+15
|
* Add named branches for match statementsGinger Bill2017-03-191-2/+1
|
* Add branch labels for loops; using listGinger Bill2017-03-191-70/+206
|
* Update gb.hGinger Bill2017-03-171-8/+1
|
* windows.odin TYPE_NAME to Type_Name; More SSA work and SSA printing for ↵Ginger Bill2017-03-121-7/+8
| | | | debugging
* Finally fix signed integer conversion and printingGinger Bill2017-03-101-4/+4
|
* Begin work on the custom backendGinger Bill2017-03-051-9/+5
|
* 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 ↵Ginger Bill2017-02-261-4/+4
| | | | of them as half-closed; slice expression uses `..`;
* 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
| | | | ~ on 64 bit constants; Fix integer casts from smaller to larger size
* Fix Tuple type info bugGinger Bill2017-02-241-0/+12
| | | | Caused by not having type safe tagged unions :P (Silly C)
* 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
| | | | immutable is still a little weird and not completely what you'd expect. Maybe just not having it is better.