aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix issue #146 regarding polymorphic type parametersv0.7.0gingerBill2017-11-181-0/+6
* Allow for default arguments after a variadic parametergingerBill2017-11-121-1/+2
* Fix array of array arithmeticgingerBill2017-11-071-0/+10
* Fix cyclic type checking buggingerBill2017-11-051-41/+41
* #const value procedure parameters; $N for polymorphic array lengthsgingerBill2017-11-051-8/+30
* Add array programminggingerBill2017-11-051-1/+13
* Add string_set.cpp; Code clean upgingerBill2017-10-301-15/+25
* Attributes; @(link_name="foo")gingerBill2017-10-291-4/+7
* Fix issue #119Ginger Bill2017-10-121-0/+1
* Correct union sizeGinger Bill2017-10-081-4/+4
* Union tag stored as an integerGinger Bill2017-10-081-15/+39
* Better error messages for import cyclesGinger Bill2017-10-081-0/+18
* Default procedure values for `proc`Ginger Bill2017-10-011-1/+2
* Procedure literals for default values in structsGinger Bill2017-10-011-0/+1
* Fix union array bug (Issue #112)Ginger Bill2017-09-291-0/+7
* Fix struct #packed alignment calculationGinger Bill2017-08-121-6/+5
* Extra type safety; Fix typosGinger Bill2017-07-311-6/+6
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-6/+11
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-36/+11
* Fix map internal type generationGinger Bill2017-07-291-3/+3
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-291-0/+4
|\
| * Fix IR print bug for empty structs;gingerBill2017-07-281-0/+4
* | Remove empty union check on array types; Fix overflowing error printingGinger Bill2017-07-291-14/+22
|/
* Fix struct parameter bugsGinger Bill2017-07-211-15/+15
* Internal changes; thread.odin for windows onlyGinger Bill2017-07-201-34/+36
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-33/+27
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-27/+26
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-79/+75
* Update internals of a Union and TupleGinger Bill2017-07-201-31/+22
* Change union layout to store type info rather than an integer; ternary expres...Ginger Bill2017-07-191-4/+11
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-113/+81
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-23/+0
* General specialization for polymorphic parametersGinger Bill2017-07-181-1/+1
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-5/+9
* Basic procedure type parameter specializationGinger Bill2017-07-161-2/+26
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-1/+15
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-1/+1
* `cast(Type)expr`; Fix overloaded procedure determination on assignmentGinger Bill2017-07-111-2/+0
* Clean up _preload.odin typesGinger Bill2017-07-101-19/+12
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-149/+113
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-59/+65
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-38/+8
* Nested record declarationsGinger Bill2017-07-101-0/+15
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-118/+118
* Replace many built-in procedures with user-level proceduresGinger Bill2017-07-041-0/+3
* Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-1/+1
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-11/+15
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-0/+4
* `do` keyword for inline statements instead of blocksGinger Bill2017-07-011-3/+5
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-23/+35